1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| @import './base.css';
| @import './element-style.css';
| #app {
| height: 100vh;
| }
| .full-height {
| height: 100%;
| box-sizing: border-box;
| }
|
| .flex-page-layout {
| display: flex;
| height: 100%;
| flex-direction: column;
| }
| .flex-page-header {
| padding: 8px 8px 4px 8px;
| }
| .flex-page-content {
| flex: 1;
| padding: 4px 8px 8px 8px;
| }
|
|