From 1a8b08ec0aef65463fb015e4eb21e961b3884ecc Mon Sep 17 00:00:00 2001
From: Matt Kirby <MattJKirby@outlook.com>
Date: Sat, 29 Apr 2023 20:37:48 +0100
Subject: [PATCH] visual bug fixed

---
 daily-thought-frontend/src/pages/feed.tsx    | 2 +-
 daily-thought-frontend/src/pages/profile.tsx | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/daily-thought-frontend/src/pages/feed.tsx b/daily-thought-frontend/src/pages/feed.tsx
index 546b93ae..8cff0b47 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 fd40ed7a..75227247 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>
-- 
GitLab