style(notifications): add spacing to notifications

This commit is contained in:
tux
2025-09-26 13:18:50 +05:30
parent 9f6ebfc46f
commit cb09eb5353

View File

@@ -42,7 +42,7 @@ export const Notifications = (gdkmonitor: Gdk.Monitor) => {
visible={notifications((ns) => ns.length > 0)}
anchor={TOP | RIGHT}
>
<box orientation={Gtk.Orientation.VERTICAL}>
<box orientation={Gtk.Orientation.VERTICAL} spacing={10}>
<For each={notifications}>{(n) => <Notification n={n} />}</For>
</box>
</window>