style: restore theme and accent dropdowns to mobile navbar

This commit is contained in:
Sam Chau
2026-01-29 02:26:27 +10:30
parent 9a510a86bb
commit 006df41a09
2 changed files with 3 additions and 3 deletions

View File

@@ -35,7 +35,7 @@
{#if open}
<Dropdown position="middle" minWidth="auto" fixed={true} {triggerEl}>
<div class="flex flex-wrap gap-2 p-2">
<div class="flex flex-col gap-2 p-2">
{#each accentColors as accent}
<button
on:click|stopPropagation={() => select(accent.value)}

View File

@@ -24,8 +24,8 @@
<div class="hidden text-xl font-bold text-neutral-900 md:block dark:text-neutral-100">profilarr</div>
</div>
<!-- Right: Accent picker and Theme toggle (desktop only) -->
<div class="hidden items-center gap-1 md:flex">
<!-- Right: Accent picker and Theme toggle -->
<div class="flex items-center gap-1">
<AccentPicker />
<ThemeToggle />
</div>