-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathindex.module.css
More file actions
76 lines (64 loc) · 1.44 KB
/
index.module.css
File metadata and controls
76 lines (64 loc) · 1.44 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
.searchResultsContainer {
display: flex;
flex-grow: 1;
flex-direction: column;
overflow-y: auto;
}
.footer {
display: flex;
justify-content: center;
align-items: baseline;
padding: 1rem;
border-top: 1px solid var(--color-neutral-200);
background-color: var(--color-neutral-100);
}
:where([data-theme='dark'], [data-theme='dark'] *) .footer {
border-top-color: var(--color-neutral-900);
background-color: var(--color-neutral-950);
}
@media (min-width: 1024px) {
.footer {
justify-content: space-between;
border-radius: 0 0 0.75rem 0.75rem;
}
}
.shortcutWrapper {
display: none;
align-items: center;
gap: 0.5rem;
}
@media (min-width: 1024px) {
.shortcutWrapper {
display: flex;
}
}
.shortcutItem {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.75rem;
color: var(--color-neutral-800);
}
:where([data-theme='dark'], [data-theme='dark'] *) .shortcutItem {
color: var(--color-neutral-600);
}
.shortcutKey {
font-family: var(--font-ibm-plex-mono);
border-radius: 0.375rem;
background-color: var(--color-neutral-200);
padding: 0.25rem;
font-size: 0.75rem;
}
:where([data-theme='dark'], [data-theme='dark'] *) .shortcutKey {
background-color: var(--color-neutral-900);
}
.shortcutKey svg {
width: 1rem;
height: 1rem;
}
.shortcutLabel {
color: var(--color-neutral-800);
}
:where([data-theme='dark'], [data-theme='dark'] *) .shortcutLabel {
color: var(--color-neutral-600);
}