WebApp【公共组件库】@前端(For Git Submodule)
Tevin
2021-03-29 1bd2c493c9cbe47d10e4ba045d5c4635fd4eccef
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;
    }
}