WebApp【公共组件库】@前端(For Git Submodule)
Tevin
2021-08-19 95eab22ba9208ac03fa206acba4096e8d0198a73
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 * 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%;
    .c-nav-bar {
        width: 100%;
    }
    .c-content {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
}