blob: 42545471875c1c250210936c89b88211fbc685f8 (
plain) (
blame)
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
|
@import "../../colors";
.configuration-page {
background-color: $color-primary-0;
.header-title {
margin: 50px auto;
}
.configuration-pane {
display: flex;
justify-content: center;
height: 100%;
padding-top: 100px;
.section-content {
background-color: $color-primary-3;
margin-top: 15px;
}
.section-table table {
background-color: red !important;
}
.section-footer {
background-color: $color-primary-3;
}
}
}
|