diff options
| author | Henry Jameson <me@hjkos.com> | 2024-03-04 22:52:54 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2024-03-04 22:52:54 +0200 |
| commit | 7f38d7d474a47ba8b2bb9ac2390ce05e7e7fa47c (patch) | |
| tree | 66f6bd31ce915a00958adaa87d7aac54d305b49b | |
| parent | e4f27419894dc93f70dd563ba231d4f7f0abb359 (diff) | |
fix popovers
| -rw-r--r-- | src/App.scss | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/App.scss b/src/App.scss index 484039d2..54b8c751 100644 --- a/src/App.scss +++ b/src/App.scss @@ -3,6 +3,8 @@ @import "./panel"; :root { + --font-size: 14px; + --status-margin: 0.75em; --navbar-height: 3.5rem; --post-line-height: 1.4; // Z-Index stuff @@ -15,7 +17,7 @@ } html { - font-size: 14px; + font-size: var(--font-size); // overflow-x: clip causes my browser's tab to crash with SIGILL lul } @@ -203,7 +205,6 @@ nav { --miniColumn: 25rem; --maxiColumn: 45rem; --columnGap: 1em; - --status-margin: 0.75em; --effectiveSidebarColumnWidth: minmax(var(--miniColumn), var(--sidebarColumnWidth, var(--miniColumn))); --effectiveNotifsColumnWidth: minmax(var(--miniColumn), var(--notifsColumnWidth, var(--miniColumn))); --effectiveContentColumnWidth: minmax(var(--miniColumn), var(--contentColumnWidth, var(--maxiColumn))); |
