Skip to content

Commit

Permalink
restore toolbar
Browse files Browse the repository at this point in the history
  • Loading branch information
recrwplay committed Dec 9, 2024
1 parent 9499403 commit 9c36923
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/css/toolbar.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
.toolbar {
color: var(--toolbar-font-color);
align-items: center;
background-color: var(--toolbar-background);
box-shadow: 0 1px 0 var(--toolbar-border-color);
display: flex;
font-size: calc(15 / var(--rem-base) * 1rem);
height: var(--toolbar-height);
justify-content: flex-start;
position: sticky;
top: var(--navbar-height);
z-index: var(--z-index-toolbar);
}

body.has-banner .toolbar {
top: calc(var(--navbar-height) + var(--banner-height));
}
Expand Down

0 comments on commit 9c36923

Please sign in to comment.