blob: 35332575c7ede94deb59ff078fd39e14fefadd3b (
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
26
27
28
29
30
31
32
33
34
 | @use "@styles/abstracts/functions" as fun;
@use "@styles/abstracts/mixins" as mix;
:global {
  #__next {
    flex: 1;
    display: flex;
    flex-flow: column nowrap;
    min-height: 100vh;
  }
}
.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);
    }
  }
}
 |