blob: 617430472f489bc3a33cf5eac38b8612e5240703 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
@use "@styles/abstracts/mixins" as mix;
.wrapper {
display: flex;
flex-flow: row wrap;
align-items: flex-start;
align-content: flex-start;
@include mix.media("screen") {
@include mix.dimensions(null, "2xs", "height") {
gap: var(--spacing-md);
font-size: var(--font-size-sm);
}
}
.label {
@include mix.media("screen") {
@include mix.dimensions(null, "2xs", "height") {
font-size: var(--font-size-sm);
&:not(.label--select) {
float: none;
margin: 0 auto;
}
}
}
&.label--select {
@include mix.media("screen") {
@include mix.dimensions("2xs", null, "height") {
margin: 0 auto 0 0;
}
}
}
}
.tooltip {
@include mix.media("screen") {
@include mix.dimensions(null, "2xs") {
font-size: var(--font-size-sm);
}
}
}
}
.items {
margin: var(--spacing-2xs) 0;
@include mix.media("screen") {
@include mix.dimensions(null, "2xs", "height") {
display: flex;
flex-flow: column wrap;
width: fit-content;
&:last-of-type {
flex: 0 0 100%;
margin: 0;
}
}
}
}
.setting {
&--select {
flex: 0 0 100%;
}
}
.group {
margin-left: auto;
@include mix.media("screen") {
@include mix.dimensions(null, "2xs", "height") {
margin: auto;
}
}
}
|