File size: 409 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
.header {
text-align: center;
h2.header__title {
font-size: $font-title-small;
font-weight: 400;
margin: 0;
@include breakpoint-deprecated( "<660px" ) {
font-size: $font-body;
}
}
}
.header__logo {
fill: var(--color-primary);
@include breakpoint-deprecated( "<960px" ) {
width: 39px;
height: 39px;
}
@include breakpoint-deprecated( "<660px" ) {
width: 24px;
height: 24px;
}
}
|