From 55818d4f37a3cd640c852262d000c280e3bbb909 Mon Sep 17 00:00:00 2001 From: grimsi <9295182+grimsi@users.noreply.github.com> Date: Sun, 30 Mar 2025 12:11:38 +0200 Subject: [PATCH] Improve styling --- gameyfin/src/main/frontend/main.css | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gameyfin/src/main/frontend/main.css b/gameyfin/src/main/frontend/main.css index cf46448..a945a33 100644 --- a/gameyfin/src/main/frontend/main.css +++ b/gameyfin/src/main/frontend/main.css @@ -10,4 +10,22 @@ .button-secondary { @apply bg-primary-300 text-background/80; } +} + +/* Custom CSS */ + +/* Overwrite default Hilla styles (e.g. loading indicator) */ +:root { + --lumo-primary-color: theme('colors.primary'); +} + +/* List box drag & drop */ +.react-aria-ListBoxItem { + &[data-dragging] { + opacity: 0.6; + } +} + +.react-aria-DropIndicator[data-drop-target] { + outline: 1px solid theme('colors.primary'); } \ No newline at end of file