Skip to content

Commit

Permalink
fix: sizing for notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
kunstmusik committed Feb 19, 2025
1 parent 93b5b90 commit ecc22c3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ function NotificationMenu() {
<div className="flex flex-col w-full gap-3 text-white items-center justify-center">
{notifications.length ? (
notifications.map((notification, index) => (
<div className="flex flex-row size-4" key={index}>
<div className="flex flex-row size-fit" key={index}>
<span
className="flex flex-row justify-center items-start"
style={{ gap: '20px' }}
Expand Down Expand Up @@ -193,7 +193,7 @@ function NotificationMenu() {
</div>
))
) : (
<span className="text-lg text-grey p-2">No Notifications</span>
<span className="text-sm text-grey p-2">No Notifications</span>
)}
</div>
}
Expand Down

0 comments on commit ecc22c3

Please sign in to comment.