forked from modularcode/modular-admin-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_main.scss
41 lines (36 loc) · 742 Bytes
/
_main.scss
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
@import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,800,700,600);
@import 'variables';
@import 'bootstrap/scss/functions';
@import 'bootstrap/scss/variables';
@import 'bootstrap/scss/mixins';
@import '_common/_styles/mixins';
html,
body {
padding: 0;
margin: 0;
height: 100%;
min-height: 100%;
font-family: 'Open Sans', sans-serif;
color: $color-text;
overflow-x: hidden;
}
.main-wrapper {
width: 100%;
position: absolute;
height: 100%;
overflow-y: auto;
overflow-x: hidden;
}
#ref {
.color-primary {
color: $color-primary;
}
.chart {
.color-primary {
color: $chart-color-primary;
}
.color-secondary {
color: $chart-color-secondary;
}
}
}