Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion web/src/lib/components/layouts/AdminPageLayout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
bind:open={sidebarStore.isOpen}
class="border-none shadow-none h-full flex flex-col justify-between gap-2"
>
<div class="flex flex-col pt-8 pe-4 gap-1">
<div class="flex flex-col pt-8 ps-1 pe-4 gap-1">
<NavbarItem title={$t('users')} href={Route.users()} icon={mdiAccountMultipleOutline} />
<NavbarItem title={$t('external_libraries')} href={Route.libraries()} icon={mdiBookshelf} />
<NavbarItem title={$t('admin.queues')} href={Route.queues()} icon={mdiTrayFull} />
Expand Down
2 changes: 1 addition & 1 deletion web/src/lib/components/sidebar/sidebar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
use:clickOutside={{ onOutclick: closeSidebar, onEscape: closeSidebar }}
use:focusTrap={{ active: isExpanded }}
>
<div class="pe-6 flex flex-col gap-1 h-max min-h-full">
<div class="ps-1 pe-6 flex flex-col gap-1 h-max min-h-full">
{@render children?.()}
</div>
</nav>
Loading