diff --git a/daily-thought-frontend/src/pages/feed.tsx b/daily-thought-frontend/src/pages/feed.tsx index 546b93aee262919a832791fc2d7cd64d21d7e365..8cff0b471e321ff23195ac286d3dba811c3c7c2a 100644 --- a/daily-thought-frontend/src/pages/feed.tsx +++ b/daily-thought-frontend/src/pages/feed.tsx @@ -38,7 +38,7 @@ const Feed = () => { }; return ( - <div className="w-full h-screen flex flex-col"> + <div className="w-full min-h-screen flex flex-col"> <div className=""> <NavBar user={user} rehydrateFeed={() => setRehydrateFeed(true)} /> </div> diff --git a/daily-thought-frontend/src/pages/profile.tsx b/daily-thought-frontend/src/pages/profile.tsx index fd40ed7a5c5f00604bc9741b5090ed049b664996..75227247dee900e88431d00c46b6f42eb4d45904 100644 --- a/daily-thought-frontend/src/pages/profile.tsx +++ b/daily-thought-frontend/src/pages/profile.tsx @@ -55,7 +55,7 @@ const Profile = () => { return ( <> <title>Profile</title> - <div className="w-full h-screen flex flex-col"> + <div className="w-full min-h-screen flex flex-col"> <div className="w-full"> <NavBar user={user} /> </div>