From 1620e0bfcfb862c562de5e8c999cd8e0e00588aa Mon Sep 17 00:00:00 2001 From: Cutieguwu Date: Sun, 1 Jun 2025 07:55:45 -0400 Subject: [PATCH] Fix main_pane scaling. --- style.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/style.css b/style.css index 811ed72..db86e3f 100644 --- a/style.css +++ b/style.css @@ -13,12 +13,13 @@ align-content: start; display: grid; grid-auto-flow: column; + grid-template-columns: min-content 1fr; } .nav_pane { padding: 1em; gap: 1em; - width: fit-content; + width: min-content; align-content: start; display: grid; float: left; @@ -81,7 +82,7 @@ .dropdown .dropdown_header { display: grid; - grid-template-columns: auto min-content; + grid-template-columns: 1fr min-content; grid-auto-flow: column; } @@ -119,8 +120,7 @@ .main_pane { padding: 1rem; - width: auto; - align-self: center; + width: 100%; background-color: rgba(0, 0, 0, 50%); color: white; }