From d3764eca1e97d68fafc82068ef42043248332002 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Fri, 30 Jan 2026 14:53:13 +0100 Subject: Add some transparency --- src/App.css | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src') diff --git a/src/App.css b/src/App.css index 1e82cf4..8d92fee 100644 --- a/src/App.css +++ b/src/App.css @@ -167,12 +167,18 @@ body, position: relative; display: flex; flex-direction: column; + min-width: 0; + min-height: 0; + height: 100%; } .scene-container { flex: 1; background: #4a4a4a; position: relative; + width: 100%; + height: 100%; + min-height: 0; } .spin-button { @@ -276,6 +282,7 @@ body, top: 16px; right: 16px; width: 280px; + opacity: 0.75; background: var(--background); border-radius: 12px; padding: 16px; @@ -394,6 +401,10 @@ body, width: calc(100vw - 32px); max-width: 320px; } + + .spin-button { + bottom: 80px; + } } /* Desktop: Sidebar always visible */ -- cgit