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 9499403 commit 9c36923Copy full SHA for 9c36923
src/css/toolbar.css
@@ -1,3 +1,17 @@
1
+.toolbar {
2
+ color: var(--toolbar-font-color);
3
+ align-items: center;
4
+ background-color: var(--toolbar-background);
5
+ box-shadow: 0 1px 0 var(--toolbar-border-color);
6
+ display: flex;
7
+ font-size: calc(15 / var(--rem-base) * 1rem);
8
+ height: var(--toolbar-height);
9
+ justify-content: flex-start;
10
+ position: sticky;
11
+ top: var(--navbar-height);
12
+ z-index: var(--z-index-toolbar);
13
+}
14
+
15
body.has-banner .toolbar {
16
top: calc(var(--navbar-height) + var(--banner-height));
17
}
0 commit comments