From 826acf9a3f6ded8a0c14d7614ea5bdbd2f51c9ea Mon Sep 17 00:00:00 2001 From: Tamius Han Date: Mon, 12 Jan 2026 01:06:23 +0100 Subject: [PATCH] add css for info and warnings --- src/ui/res/styles/player-window.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/ui/res/styles/player-window.css b/src/ui/res/styles/player-window.css index a43fb99..f9c4c29 100644 --- a/src/ui/res/styles/player-window.css +++ b/src/ui/res/styles/player-window.css @@ -167,3 +167,13 @@ } } } + +.warning-box, .info-box { + @apply px-4 py-2 flex flex-row gap-4 border; +} +.warning-box { + @apply border-amber-500 text-amber-300 bg-amber-950/75; +} +.info-box { + @apply border-blue-500 text-blue-300 bg-blue-950/75; +}