-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathApp.scss
89 lines (82 loc) · 2.37 KB
/
App.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
@charset "utf-8";
// required bootstrap styles
@import '../node_modules/bootstrap/scss/functions';
@import '../node_modules/bootstrap/scss/variables';
@import '../node_modules/bootstrap/scss/mixins';
@import '../node_modules/bootstrap/scss/utilities';
// optional bootstrap styles
@import '../node_modules/bootstrap/scss/reboot';
@import '../node_modules/bootstrap/scss/buttons';
@import '../node_modules/bootstrap/scss/tables';
@import '../node_modules/bootstrap/scss/nav';
@import '../node_modules/bootstrap/scss/grid';
@import '../node_modules/bootstrap/scss/custom-forms';
// react-component component styles
@import '../node_modules/rc-tooltip/assets/bootstrap_white.css';
@import '../node_modules/rc-dialog/assets/index.css';
@import './assets/styles/rc-select.scss';
// react-toastify styles
@import '../node_modules/react-toastify/dist/ReactToastify.css';
@font-face {
font-family: 'OpenSans Light';
src: url('./assets/fonts/OpenSans-Light.ttf') format('truetype');
font-style: normal;
font-weight: 300;
font-display: swap;
}
@font-face {
font-family: 'OpenSans Regular';
src: url('./assets/fonts/OpenSans-Regular.ttf') format('truetype');
font-style: normal;
font-weight: 400;
font-display: swap;
}
@font-face {
font-family: 'OpenSans SemiBold';
src: url('./assets/fonts/OpenSans-SemiBold.ttf') format('truetype');
font-style: normal;
font-weight: 600;
font-display: swap;
}
@font-face {
font-family: 'OpenSans Bold';
src: url('./assets/fonts/OpenSans-Bold.ttf') format('truetype');
font-style: normal;
font-weight: 700;
font-display: swap;
}
@font-face {
font-family: 'OpenSans ExtraBold';
src: url('./assets/fonts/OpenSans-ExtraBold.ttf') format('truetype');
font-style: normal;
font-weight: 800;
font-display: swap;
}
@font-face {
font-family: 'WorkSans Light';
src: url('./assets/fonts/WorkSans-Light.ttf') format('truetype');
font-style: normal;
font-weight: 300;
font-display: swap;
}
@font-face {
font-family: 'WorkSans Medium';
src: url('./assets/fonts/WorkSans-Medium.ttf') format('truetype');
font-style: normal;
font-weight: 500;
font-display: swap;
}
@font-face {
font-family: 'WorkSans SemiBold';
src: url('./assets/fonts/WorkSans-SemiBold.ttf') format('truetype');
font-style: normal;
font-weight: 600;
font-display: swap;
}
html,
body,
#root {
background-color: #252f4a;
width: 100%;
min-width: 1024px;
}