We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0df4dd3 commit 1e9d872Copy full SHA for 1e9d872
1 file changed
css/style.css
@@ -1,3 +1,7 @@
1
+:root {
2
+ --header-height: 57px;
3
+}
4
+
5
* {
6
box-sizing: border-box;
7
-webkit-tap-highlight-color: transparent;
@@ -34,6 +38,7 @@ body {
34
38
35
39
header {
36
40
grid-area: header;
41
+ height: var(--header-height);
37
42
}
43
44
.content {
@@ -1699,6 +1704,9 @@ blockquote {
1699
1704
1700
1705
#navmenu.opens {
1701
1706
display: block;
1707
+ max-height: calc(100dvh - var(--header-height));
1708
+ overflow-y: auto;
1709
+ overscroll-behavior: contain;
1702
1710
1703
1711
1712
#navbar a {
0 commit comments