blob: df4160fc1deaaa1048db3e90cfa23cbead95dec9 (
plain)
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
|
@use 'global/globalCssVariables.module' as global;
// bcz: fix @import 'nodeModuleOverrides';
:root {
--flyoutHandleWidth: 28px;
--menuPanelWidth: 60px;
}
html,
body {
width: 100%;
height: 100%;
overflow: hidden;
font-family: global.$sans-serif;
font-size: global.$body-text;
margin: 0px;
position: absolute;
top: 0px;
left: 0px;
}
// div {
// user-select: none;
// -moz-user-select: none;
// -webkit-user-select: none;
// -ms-user-select: none;
// }
.jsx-parser {
width: 100%;
height: 100%;
border-radius: inherit;
position: inherit;
// background: inherit;
}
p {
margin: 0px;
padding: 0px;
}
::-webkit-scrollbar {
-webkit-appearance: none;
height: 8px;
width: 8px;
}
::-webkit-scrollbar-thumb {
border-radius: 2px;
background-color: rgba(0, 0, 0, 0.5);
}
// button stuff
button {
background: black;
outline: none;
border: 0px;
color: global.$white;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 75%;
padding: 10px;
transition: transform 0.2s;
}
button:hover {
background: global.$medium-gray;
transform: scale(1.05);
cursor: pointer;
}
.svg-inline--fa {
vertical-align: unset;
}
|