anatole-porzh/assets/scss/partials/layout/_header.scss

25 lines
390 B
SCSS
Raw Permalink Normal View History

2025-10-09 10:23:36 +02:00
@use 'modules/color_theme' as color;
@use 'modules/config' as conf;
.header {
@include color.themed() {
background-color: color.t('accent');
}
width: 100%;
position: fixed;
z-index: 1;
top: 0;
@include conf.desktop {
position: sticky;
@include color.themed() {
border-bottom: color.t('border');
}
}
@include conf.print {
display: none;
}
}