forked from polywock/globalSpeed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSectionRules.scss
54 lines (46 loc) · 1.02 KB
/
SectionRules.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
.SectionRules {
& > .rules {
& > .Rule {
display: grid;
grid-column-gap: 10px;
grid-template-columns: repeat(4, max-content) 1fr repeat(3, max-content);
align-items: center;
border: 1px solid var(--border-color);
padding: 8px;
margin-bottom: 10px;
& > .show {
border-radius: 5px;
}
&:last-child {
margin-bottom: 0;
}
& > .NumericInput {
width: 60px;
}
& > .FxControlButton {
& > .wrapper {
position: fixed;
left: 0;
top: 0;
width: 100vw;
height: 100vh;
z-index: 9999999999;
background-color: #00000066;
display: grid;
justify-content: center;
align-content: center;
& > .FxControl {
width: 300px;
padding: 8px;
max-height: 80vh;
overflow-y: scroll;
}
}
}
}
}
& > button.create {
margin-top: 30px;
display: block;
}
}