Skip to content

Commit 29735f1

Browse files
committed
fix(webapp): remove top padding from the open side menu notification
The expanded notification card now sits flush to the top of its slot (p-2 pt-0); the collapsed bell icon is unchanged.
1 parent e6a8dea commit 29735f1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/webapp/app/components/navigation/NotificationPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export function NotificationPanel({
121121

122122
return (
123123
<Popover>
124-
<div className={isCollapsed ? "p-1" : "p-2"}>
124+
<div className={isCollapsed ? "p-1" : "p-2 pt-0"}>
125125
{isCollapsed ? (
126126
<SimpleTooltip
127127
asChild

0 commit comments

Comments
 (0)