blob: c6a88b7883e8fe02b716183b240161699919b07e (
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
42
43
44
45
46
47
48
49
50
|
@import "../colors";
.header {
padding: 15px;
.header-content {
display: flex;
width: 100%;
padding: 0 10px;
background-color: $color-primary-0;
}
.header-title {
width: 200px;
margin: 5px 0 5px 0;
}
.header-buttons {
display: flex;
justify-content: flex-end;
margin: 7px 0;
.button-field {
margin-left: 7px;
}
}
.filters-bar {
flex: 1;
padding: 3px 0;
.filter,
.button-field {
display: inline-block;
margin-right: 10px;
}
.button-field button {
font-weight: 400;
padding: 7px 10px;
border-radius: 5px;
}
}
@media screen and (max-width: 1530px) {
&.configured .header-title {
display: none;
}
}
}
|