-
Notifications
You must be signed in to change notification settings - Fork 353
Expand file tree
/
Copy pathdebugger-toolbar.module.scss
More file actions
87 lines (71 loc) · 1.31 KB
/
debugger-toolbar.module.scss
File metadata and controls
87 lines (71 loc) · 1.31 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
@use "@/libs/theme/styles/variables" as *;
@use "@/libs/theme/styles/mixins" as *;
.content {
@include InnerContentFlex;
flex-direction: column;
grid-row-gap: 0;
}
.toolbar {
display: flex;
justify-content: space-between;
margin-bottom: 0.5rem;
}
.tabs {
display: flex;
gap: 1rem;
list-style: none;
}
.titleTab {
color: var(--color_fg_bold);
font-size: 1.5rem;
line-height: 2.25rem;
letter-spacing: -0.8px;
background-color: transparent;
outline: none;
border: none;
cursor: pointer;
opacity: 0.48;
&[data-active="true"] {
opacity: 1;
}
:global(html[lang="ja"]) & {
font-size: 1.25rem;
line-height: 1.75rem;
}
@media #{$breakpoint-dimension-sm} {
font-size: 1.75rem;
line-height: 2.25rem;
}
}
.titleTab:hover {
opacity: 1;
}
.titleTab__compactLabel {
@media #{$tablet} {
display: none;
}
}
.titleTab__fullLabel {
display: none;
@media #{$tablet} {
display: unset;
}
}
.description {
width: 100%;
color: var(--color_fg_default);
display: flex;
flex-direction: column;
row-gap: 0.5rem;
font-size: 0.875rem;
line-height: 1.375rem;
margin-bottom: 0.5rem;
& strong {
font-weight: 500;
}
@media #{$breakpoint-dimension-sm} {
flex-direction: row;
align-items: center;
justify-content: space-between;
}
}