Skip to content
Snippets Groups Projects
Commit 4d31de7d authored by D'Abrantes, Felipe (UG - Comp Sci & Elec Eng)'s avatar D'Abrantes, Felipe (UG - Comp Sci & Elec Eng)
Browse files

Merge branch 'feed-overlap-visual-fix' into 'main'

Fix visual bug with the feed posts overlapping

See merge request !33
parents a46cf578 1a8b08ec
No related branches found
No related tags found
1 merge request!33Fix visual bug with the feed posts overlapping
...@@ -38,7 +38,7 @@ const Feed = () => { ...@@ -38,7 +38,7 @@ const Feed = () => {
}; };
return ( return (
<div className="w-full h-screen flex flex-col"> <div className="w-full min-h-screen flex flex-col">
<div className=""> <div className="">
<NavBar user={user} rehydrateFeed={() => setRehydrateFeed(true)} /> <NavBar user={user} rehydrateFeed={() => setRehydrateFeed(true)} />
</div> </div>
......
...@@ -55,7 +55,7 @@ const Profile = () => { ...@@ -55,7 +55,7 @@ const Profile = () => {
return ( return (
<> <>
<title>Profile</title> <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"> <div className="w-full">
<NavBar user={user} /> <NavBar user={user} />
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment