From fe28d8ddcbb109c86012a0aa6c11a2178fc396ca Mon Sep 17 00:00:00 2001 From: EugeneTes Date: Fri, 12 Jun 2026 13:53:25 +0000 Subject: [PATCH] fix: prevent scrollbars and inherit button font (review) --- src/styles.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles.css b/src/styles.css index 86bd99c..1b3cc33 100644 --- a/src/styles.css +++ b/src/styles.css @@ -1,10 +1,10 @@ * { margin: 0; padding: 0; box-sizing: border-box; } -html, body { height: 100%; background: #05070d; color: #bfe8ff; font: 13px/1.5 "Segoe UI", system-ui, sans-serif; } +html, body { height: 100%; background: #05070d; color: #bfe8ff; font: 13px/1.5 "Segoe UI", system-ui, sans-serif; overflow: hidden; } body { display: flex; } #stage { flex: 1; height: 100%; position: relative; } #panel { width: 320px; height: 100%; overflow-y: auto; padding: 12px; background: #0a0e18; border-left: 1px solid #1b2940; } #panel h2 { font-size: 13px; color: #69e6ff; text-transform: uppercase; letter-spacing: 1px; margin: 14px 0 6px; } -#panel button { background: #11203a; color: #9fd8ff; border: 1px solid #28456e; border-radius: 3px; padding: 3px 9px; margin: 2px; cursor: pointer; font-size: 12px; } +#panel button { background: #11203a; color: #9fd8ff; border: 1px solid #28456e; border-radius: 3px; padding: 3px 9px; margin: 2px; cursor: pointer; font-size: 12px; font-family: inherit; } #panel button:hover { background: #1b3358; } #panel button.active { background: #0e4a5e; border-color: #2ec5e0; color: #d6f6ff; } #panel table { width: 100%; border-collapse: collapse; margin: 4px 0; }