-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathHomepageCliExample.module.css
More file actions
68 lines (60 loc) · 1.26 KB
/
HomepageCliExample.module.css
File metadata and controls
68 lines (60 loc) · 1.26 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
.cliExampleSection {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 16px;
}
.cliExampleTitle {
color: var(--color-text-muted);
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px;
margin-bottom: 16px;
}
.cliExampleCodeBlock {
width: fit-content;
height: fit-content;
padding: 0;
border: 0;
margin-bottom: 18px;
width: 100%;
pre {
margin: 0;
width: 100%;
padding: 8px 16px;
background-color: var(--color-background-muted);
border: 1px solid var(--color-border);
display: flex;
align-items: center;
gap: 16px;
font-size: 14px;
line-height: 20px;
button {
margin-left: auto;
}
}
.cliCommandPrefix {
color: var(--color-text-muted);
user-select: none;
}
/* TABLET */
@media (min-width: 768px) {
max-width: 526px;
}
}
.cliExampleSubtitle {
color: var(--color-text-subtle);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px;
}
/* TABLET */
@media (min-width: 768px) {
.cliExampleSection {
padding: 64px 0;
}
}