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
| /**
| * page
| * @author Tevin
| */
|
| @import "../../common/sassMixin";
|
| .c-page {
| @include position(fixed, 0 0);
| @include flexbox(flex, flex-start flex-start, column);
| width: 100%;
| height: 100%;
| background-color: #E1ECEE;
| .c-nav-bar {
| width: 100%;
| }
| .c-content {
| position: relative;
| width: 100%;
| height: 100%;
| overflow: hidden;
| .c-content-inner,
| .c-content-scroll {
| width: 100%;
| height: 100%;
| }
| }
| }
|
|