WebApp【公共组件库】@前端(For Git Submodule)
Tevin
2021-11-16 040e2ccd2a26efd3b0bf65ddb400f9803ed52360
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 * 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;
    }
}