diff --git a/src/app.css b/src/app.css index 34260d0b..b464ef19 100644 --- a/src/app.css +++ b/src/app.css @@ -365,7 +365,7 @@ /* tippy popover */ .tippy-box { - @apply shadow-xl; + @apply rounded-box shadow-xl; } /* emoji picker */ diff --git a/src/app/util/notifications.ts b/src/app/util/notifications.ts index 618b3de5..8f4f6faa 100644 --- a/src/app/util/notifications.ts +++ b/src/app/util/notifications.ts @@ -181,7 +181,7 @@ export const allNotifications = derived( ) export const notifications = derived([page, allNotifications], ([$page, $allNotifications]) => { - return new Set([...$allNotifications].filter(p => $page.url.pathname.startsWith(p))) + return new Set([...$allNotifications].filter(p => !$page.url.pathname.startsWith(p))) }) export const onNotification = call(() => { diff --git a/src/lib/components/IconPickerButton.svelte b/src/lib/components/IconPickerButton.svelte index 1c005300..f61e1614 100644 --- a/src/lib/components/IconPickerButton.svelte +++ b/src/lib/components/IconPickerButton.svelte @@ -51,7 +51,7 @@ bind:popover component={IconPickerDialog} props={{onSelect: onClick}} - params={{trigger: "manual", interactive: true}}> + params={{trigger: "manual", interactive: true, placement: "top-end"}}>