blob: 806d2d760de1eafb97fdc8d1bf59d87d6627e60c (
plain)
| 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
 | @use "@styles/abstracts/functions" as fun;
@use "@styles/abstracts/mixins" as mix;
.header {
  border-bottom: fun.convert-px(3) solid var(--color-border-light);
}
.main {
  flex: 1;
}
.footer {
  border-top: fun.convert-px(3) solid var(--color-border-light);
}
.noscript-spacing {
  width: 100%;
  height: fun.convert-px(75);
  @include mix.media("screen") {
    @include mix.dimensions("xs") {
      height: fun.convert-px(50);
    }
  }
}
 |