File size: 860 Bytes
b91e262 | 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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | @import "@sass/abstracts/vars/colors";
@import "@sass/abstracts/mixins";
@import "variables";
.prod-mode {
#header {
display: flex;
@include respond-to(mobile-large) {
padding-bottom: 0;
flex-direction: column-reverse;
}
}
}
header {
#header {
.bs-title {
padding-left: 50px;
h1 {
font-size: $text-size-24;
font-weight: 600;
line-height: 18px;
padding-top: 40px;
margin: 0;
}
}
@include respond-to(mobile-large) {
padding-bottom: 0;
padding-top: 0;
flex-direction: column-reverse;
.bs-title {
padding-left: 0;
text-align: center;
margin-top: -5px;
h1 {
font-weight: 500;
line-height: 29px;
padding-top: 0;
margin-bottom: 10px;
}
}
}
}
}
|