You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
432 B
SCSS
26 lines
432 B
SCSS
header, footer {
|
|
background-color : var(--bs-body-bg);
|
|
width : 100%;
|
|
margin : 0;
|
|
|
|
&:not(.overlay-not-fixed) {
|
|
position : fixed;
|
|
z-index : 10;
|
|
}
|
|
}
|
|
header {
|
|
top : 0;
|
|
height : 30px;
|
|
border-bottom : 1px solid black;
|
|
}
|
|
footer {
|
|
bottom : 0;
|
|
}
|
|
|
|
#div-body {
|
|
padding-top : 21px;
|
|
padding-bottom : 0;
|
|
}
|
|
html {
|
|
scroll-padding-top : 21px
|
|
} |