forked from AkkomaGang/akkoma-fe
Compare commits
No commits in common. "4357239e2a5a06a1352c91e5b5dfd295cc8e1850" and "cc4a2eda79cdc50c121520151910531ae1aaf8ef" have entirely different histories.
4357239e2a
...
cc4a2eda79
3 changed files with 6 additions and 7 deletions
10
src/App.scss
10
src/App.scss
|
@ -7,7 +7,7 @@
|
|||
}
|
||||
|
||||
html {
|
||||
font-size: 18px;
|
||||
font-size: 14px;
|
||||
// overflow-x: clip causes my browser's tab to crash with SIGILL lul
|
||||
}
|
||||
|
||||
|
@ -127,7 +127,7 @@ nav {
|
|||
box-shadow: var(--topBarShadow);
|
||||
box-sizing: border-box;
|
||||
height: var(--navbar-height);
|
||||
position: relative;
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
#sidebar {
|
||||
|
@ -135,7 +135,7 @@ nav {
|
|||
}
|
||||
|
||||
.column.-scrollable {
|
||||
top: 0;
|
||||
top: var(--navbar-height);
|
||||
position: sticky;
|
||||
}
|
||||
|
||||
|
@ -297,7 +297,7 @@ nav {
|
|||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
padding-top: 0;
|
||||
margin-top: 0;
|
||||
margin-top: var(--navbar-height);
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
|
@ -339,7 +339,7 @@ nav {
|
|||
cursor: pointer;
|
||||
box-shadow: $fallback--buttonShadow;
|
||||
box-shadow: var(--buttonShadow);
|
||||
font-size: 0.8em;
|
||||
font-size: 1em;
|
||||
font-family: sans-serif;
|
||||
font-family: var(--interfaceFont, sans-serif);
|
||||
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
|
||||
.timeline-heading {
|
||||
.button-default, .alert {
|
||||
position: sticky;
|
||||
line-height: 2em;
|
||||
width: 100%;
|
||||
}
|
||||
|
|
|
@ -81,7 +81,7 @@
|
|||
|
||||
&.-sticky {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
top: var(--navbar-height);
|
||||
}
|
||||
|
||||
&::after,
|
||||
|
|
Loading…
Reference in a new issue