blob: fff28e6d163d75b241e7dc7cb5d9d9d7052e0837 (
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
31
32
33
34
35
36
37
38
39
40
41
|
@import "../colors";
.header {
height: 80px;
padding: 15px 30px;
> .row {
background-color: $color-primary-0;
}
.header-title {
width: 200px;
margin: 5px 0 5px -5px;
}
.header-buttons {
display: flex;
justify-content: flex-end;
margin: 7px 0;
.button-field {
margin-left: 7px;
}
}
.filters-bar {
padding: 3px 0;
.filter,
.button-field {
display: inline-block;
margin-right: 10px;
}
.button-field button {
font-weight: 400;
padding: 7px 10px;
border-radius: 5px;
}
}
}
|