Skip to content

Commit c568f07

Browse files
committed
fix(reader): restore solid circle background on quick actions FAB
The Svelte 5 rewrite of QuickActions (replacing Flowbite's SpeedDial) dropped the background/shadow on the toggle button, leaving only a bare plus icon that disappears against light backgrounds. Fixes #249
1 parent 6516c7c commit c568f07

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/components/Reader/QuickActions.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@
153153
<!-- Main toggle button -->
154154
<button
155155
onclick={toggleMenu}
156-
class="flex h-12 w-12 items-center justify-center rounded-full text-gray-900 focus:ring-2 focus:ring-blue-500 focus:outline-none dark:text-white"
156+
class="flex h-12 w-12 items-center justify-center rounded-full bg-gray-700 text-gray-300 shadow-lg hover:bg-gray-600 focus:ring-2 focus:ring-blue-500 focus:outline-none dark:bg-gray-700 dark:text-gray-300 dark:hover:bg-gray-600"
157157
aria-label="Quick actions menu"
158158
style="transition: transform 0.3s ease; transform: rotate({open ? 45 : 0}deg);"
159159
>

0 commit comments

Comments
 (0)