Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ import SentimentHistory from './components/SentimentHistory';

function App() {
return (
<div className="flex h-screen bg-gray-50">
<div className="flex flex-col md:flex-row min-h-screen bg-gray-50">
{/* Sidebar */}
<aside className="w-56 bg-white shadow-md py-6 px-5">
<aside className="w-full md:w-56 bg-white shadow-md py-6 px-5">
<h1 className="text-2xl font-bold text-amber-700 mb-4">Reddit Meter</h1>
<p className="text-sm text-gray-600">Track Reddit's mood in real time.</p>
</aside>

{/* Main Content */}
<main className="flex-1 px-8 py-8 overflow-y-auto space-y-12">
<main className="flex-1 px-4 md:px-8 py-4 md:py-8 overflow-y-auto space-y-12">
<section>
<CurrentSentimentSummary />
</section>
Expand Down