Ability to stick header to the top of the page

If enabled, header with top menu will be always visible regardless of scrolling.
This commit is contained in:
Grzegorz Korba
2022-07-12 11:43:26 +02:00
committed by Greg Korba
parent e0fc64c43e
commit 84e941d50a
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,11 @@
header.header-sticky {
position: sticky;
top: 0;
width: 100%;
background: var(--theme);
z-index: 1000;
}
.nav {
display: flex;
flex-wrap: wrap;