more scaling options

This commit is contained in:
Henry Jameson 2024-06-13 02:22:47 +03:00
commit 6343b91abf
11 changed files with 165 additions and 121 deletions

View file

@ -5,7 +5,7 @@
:root {
--fontSize: 14px;
--status-margin: 0.75em;
--navbar-height: 3.5rem;
--navbar-height: var(--navbarSize, 3.5rem);
--post-line-height: 1.4;
// Z-Index stuff
--ZI_media_modal: 9000;
@ -21,6 +21,9 @@
html {
font-size: var(--textSize);
--navbar-height: var(--navbarSize, 3.5rem);
--emoji-size: var(--emojiSize, 32px);
// overflow-x: clip causes my browser's tab to crash with SIGILL lul
}