-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontainer.css
More file actions
58 lines (48 loc) · 812 Bytes
/
container.css
File metadata and controls
58 lines (48 loc) · 812 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
57
58
/* Components Styles */
.main {
display: flex;
flex-direction: column;
}
.main-content {
position: relative;
max-width: 1368px;
margin: 0px auto;
padding: 0px 24px;
}
.main-content--sub {
margin-bottom: 64px;
}
.container-elements {
display: flex;
justify-content: end;
}
.container-elements--table {
display: flex;
gap: 12px;
padding-bottom: 16px;
}
.container-elements--theme {
padding: 15px 65px;
}
.container-elements__selects {
display: flex;
gap: 12px;
}
.container-input-card {
display: flex;
gap: 8px;
justify-content: end;
}
.element-hidden {
display: none !important;
}
@media (max-width: 800px) {
.container-elements--table {
display: flex;
flex-direction: column;
gap: 8px;
}
.container-input-card {
flex-direction: column;
}
}