aswi20220x00-gitlab/webapp/styles/MainLayout.module.scss @ 005202c6
1 |
.layoutWrapper { |
---|---|
2 |
background-color: #ffffff; |
3 |
display: grid; |
4 |
|
5 |
grid: |
6 |
[header-start] 'header' 50px [header-end] |
7 |
[main-start] 'content' [main-end] |
8 |
[footer-start] 'footer' 30px [footer-end]; |
9 |
|
10 |
place-items: stretch; |
11 |
place-content: stretch; |
12 |
|
13 |
width: 100vw; |
14 |
height: 100vh; |
15 |
|
16 |
gap: 3px; |
17 |
}
|
18 |
|
19 |
.header { |
20 |
grid-area: header; |
21 |
|
22 |
}
|
23 |
|
24 |
.content { |
25 |
grid-area: content; |
26 |
overflow-y: hidden; |
27 |
}
|
28 |
|
29 |
.footer { |
30 |
grid-area: footer; |
31 |
}
|