-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathdebugger-picker.module.scss
More file actions
61 lines (49 loc) · 1.18 KB
/
debugger-picker.module.scss
File metadata and controls
61 lines (49 loc) · 1.18 KB
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
@use "libs/theme/styles/variables" as *;
@use "libs/theme/styles/mixins" as *;
$picker-width-sm: 3.25rem;
$picker-list-width-sm: 4.75rem;
$picker-list-offset-sm: calc(($picker-list-width-sm - $picker-width-sm) / 2);
$picker-width-md: 3.25rem;
$picker-list-width-md: 7rem;
$picker-list-offset-md: calc(($picker-list-width-md - $picker-width-md) / 2);
$picker-width-lg: 5rem;
$picker-list-width-lg: 7rem;
$picker-list-offset-lg: calc(($picker-list-width-lg - $picker-width-lg) / 2);
.picker {
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
background: transparent;
border: none;
color: var(--color_fg_bold);
cursor: pointer;
gap: 0.75rem;
@media #{$breakpoint-dimension-md} {
&[data-has-label="true"] {
width: 100%;
}
}
}
.picker__label {
display: flex;
align-items: center;
justify-content: center;
padding: 0;
list-style-type: none;
margin: 0;
gap: 0.5rem;
font-size: 0.8125rem;
line-height: 1.3125rem;
letter-spacing: -0.05px;
height: 100%;
@media #{$breakpoint-dimension-sm} {
width: 100%;
}
& svg {
stroke: var(--color_fg_bold);
}
}
.picker__fullName {
display: flex;
}