app.scss
835 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
@import './shared.scss';
html,
body {
height: 100%;
width: 100%;
}
* {
margin: 0;
padding: 0;
text-decoration: none;
}
#__next {
height: 100%;
min-width: 236px;
}
.app-layout {
min-height: 100vh;
height: auto;
display: block;
}
.app-header {
@media screen and (max-width: $medium_tablet_width) {
padding: 0px;
position: fixed;
width: 100%;
z-index: 1;
.ant-menu-submenu-horizontal {
float: right;
}
}
}
.outer-container {
width: 100%;
max-width: $window_max_width;
min-height: calc(100vh - 64px);
padding: 12px 50px;
margin: 0 auto;
overflow-y: scroll;
@media screen and (max-width: $medium_tablet_width) {
padding: 76px 16px 12px 16px;
min-height: 100vh;
}
@media screen and (max-width: $small_smart_phone_width) {
padding: 10px 8px;
}
}