blob: b2049212a1264119c688126f2d29a7790851b73e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
header {
&>div {
padding: 2rem 1rem;
// different padding when screen size below width-md(768px)
@media screen and (max-width: $width-md) {
padding: 2rem 1.5rem;
}
}
.sub-title {
font-size: $font-size-l3;
display: block;
color: $color-mute;
}
border-bottom: $spliter;
}
|