File tree Expand file tree Collapse file tree 1 file changed +28
-10
lines changed
src/features/debugger/components/debugger-toolbar Expand file tree Collapse file tree 1 file changed +28
-10
lines changed Original file line number Diff line number Diff line change 4
4
.content {
5
5
@include InnerContentFlex ;
6
6
flex-direction : column ;
7
-
7
+ align-items : center ;
8
8
grid-row-gap : 0 ;
9
9
}
10
10
16
16
17
17
.tabs {
18
18
display : flex ;
19
- gap : 1rem ;
20
19
list-style : none ;
20
+ background-color : var (--color_bg_app_bar );
21
+ padding : 0.25rem ;
22
+ border-radius : 9999px ;
23
+ }
24
+
25
+ .titleTab :hover {
26
+ opacity : 1 ;
27
+ background-color : var (--color_bg_app_bar );
28
+ border-radius : 9999px ;
29
+ transition : all 0.2s ease-out
21
30
}
22
31
23
32
.titleTab {
24
33
color : var (--color_fg_bold );
25
- font-size : 1.5rem ;
26
- line-height : 2.25rem ;
27
- letter-spacing : -0.8px ;
34
+ padding : 0.5rem 1rem ;
28
35
background-color : transparent ;
29
36
outline : none ;
30
37
border : none ;
31
38
cursor : pointer ;
32
39
opacity : 0.48 ;
40
+ transition : all .2s ease-out ;
33
41
34
42
& [data-active = " true" ] {
35
43
opacity : 1 ;
44
+ background-color : var (--color_bg_layer );
45
+ border-radius : 9999px ;
46
+ box-shadow : 0 1px 2px rgba (0 ,0 ,0 ,.1 );
47
+ transition : all .2s ease-out ;
36
48
}
37
49
38
50
:global (html[lang= " ja" ] ) & {
41
53
}
42
54
43
55
@media #{$breakpoint-dimension-sm } {
44
- font-size : 1.75 rem ;
45
- line-height : 2.25 rem ;
56
+ font-size : 0.875 rem ;
57
+ line-height : 1.35 ;
46
58
}
47
59
}
48
60
49
- .titleTab :hover {
50
- opacity : 1 ;
51
- }
61
+
52
62
53
63
.titleTab__compactLabel {
64
+ font-size : .875rem ;
65
+ font-weight : 600 ;
66
+ font-family : var (--font-primary );
67
+ line-height : 1.35 ;
54
68
@media #{$tablet } {
55
69
display : none ;
56
70
}
57
71
}
58
72
59
73
.titleTab__fullLabel {
60
74
display : none ;
75
+ font-size : .875rem ;
76
+ font-weight : 600 ;
77
+ font-family : var (--font-primary );
78
+ line-height : 1.35 ;
61
79
62
80
@media #{$tablet } {
63
81
display : unset ;
You can’t perform that action at this time.
0 commit comments