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.
29 lines
426 B
SCSS
29 lines
426 B
SCSS
.header {
|
|
background: url(/assets/img/baromator.svg);
|
|
background-repeat: repeat-x;
|
|
|
|
padding-top: 55px;
|
|
margin-bottom: 3rem;
|
|
|
|
@media (max-width: 40em) {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
@media print {
|
|
background: none;
|
|
padding-top: 0;
|
|
}
|
|
}
|
|
|
|
.header__inner {
|
|
@include container--full;
|
|
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
@media (max-width: 40em) {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
}
|