Compare commits

...

3 commits

3 changed files with 7 additions and 6 deletions

View file

@ -7,7 +7,7 @@
} }
html { html {
font-size: 14px; font-size: 18px;
// overflow-x: clip causes my browser's tab to crash with SIGILL lul // overflow-x: clip causes my browser's tab to crash with SIGILL lul
} }
@ -127,7 +127,7 @@ nav {
box-shadow: var(--topBarShadow); box-shadow: var(--topBarShadow);
box-sizing: border-box; box-sizing: border-box;
height: var(--navbar-height); height: var(--navbar-height);
position: fixed; position: relative;
} }
#sidebar { #sidebar {
@ -135,7 +135,7 @@ nav {
} }
.column.-scrollable { .column.-scrollable {
top: var(--navbar-height); top: 0;
position: sticky; position: sticky;
} }
@ -297,7 +297,7 @@ nav {
margin-left: 0; margin-left: 0;
margin-right: 0; margin-right: 0;
padding-top: 0; padding-top: 0;
margin-top: var(--navbar-height); margin-top: 0;
margin-bottom: 0; margin-bottom: 0;
} }
@ -339,7 +339,7 @@ nav {
cursor: pointer; cursor: pointer;
box-shadow: $fallback--buttonShadow; box-shadow: $fallback--buttonShadow;
box-shadow: var(--buttonShadow); box-shadow: var(--buttonShadow);
font-size: 1em; font-size: 0.8em;
font-family: sans-serif; font-family: sans-serif;
font-family: var(--interfaceFont, sans-serif); font-family: var(--interfaceFont, sans-serif);

View file

@ -23,6 +23,7 @@
.timeline-heading { .timeline-heading {
.button-default, .alert { .button-default, .alert {
position: sticky;
line-height: 2em; line-height: 2em;
width: 100%; width: 100%;
} }

View file

@ -81,7 +81,7 @@
&.-sticky { &.-sticky {
position: sticky; position: sticky;
top: var(--navbar-height); top: 0;
} }
&::after, &::after,