blob: d3295cd331b66316584bb582d6fa8071298812a7 (
plain)
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
|
@import '~/styles/utils/custom-media';
.topBar {
position: sticky;
top: 0;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
z-index: 1;
background-color: var(--color-background2);
backdrop-filter: blur(36px);
}
.topBarRight {
display: flex;
align-items: center;
flex-wrap: wrap;
flex: 1;
justify-content: flex-end;
margin-right: 20px;
}
.textFilterContainer {
max-width: 350px;
min-width: 150px;
flex: 1;
margin-right: 8px;
}
.group {
padding: 10px 15px;
@media (--breakpoint-not-small) {
padding: 10px 40px;
}
}
|