-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (60 loc) · 1.07 KB
/
style.css
File metadata and controls
71 lines (60 loc) · 1.07 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
.codicon-cloud-upload:before {
content: "\\eac3";
}
html {
font-family: var(--fontsSans);
background-color: var(--contextMenuBg);
color: var(--fgDefault);
overflow-x: hidden;
}
body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
flex-direction: column;
overflow-y: hidden;
}
header {
display: flex;
flex-direction: column;
gap: var(--space4);
}
@media (min-width: 864px) {
header {
flex-direction: row;
justify-content: space-between;
align-items: center;
}
}
.menu {
display: flex;
gap: var(--space6);
}
main {
display: flex;
flex-grow: 1;
flex-direction: column;
height: 1px; /* hacky workaround so height doesn't overshoot viewport */
}
header {
padding: var(--space7);
border-bottom: 1px solid var(--borderSubtle);
}
h1 {
font-size: var(--fontSizesXxlarge);
font-weight: var(--fontWeightsSansMedium);
margin: 0;
padding: 0;
}
.eject-version-frame {
width: fit-content;
}
.eject-version-wrapper {
display: flex;
gap: 2rem;
padding-bottom: 1rem;
}
.eject-version-wrapper > ts-button {
flex-grow: 1;
}