forked from forthfate/openorbit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsaved-data-files.css
More file actions
49 lines (42 loc) · 753 Bytes
/
Copy pathsaved-data-files.css
File metadata and controls
49 lines (42 loc) · 753 Bytes
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
.saved-data-files {
display: grid;
gap: 9px;
}
.saved-data-files__list {
display: grid;
gap: 7px;
}
.saved-data-files__list article {
display: grid;
gap: 5px;
padding: 10px;
border: 1px solid #2d3a32;
border-radius: 8px;
background: #111814;
}
.saved-data-files__list article > strong {
font-size: 12px;
}
.saved-data-files__list small {
color: #8a9990;
font-size: 10px;
}
.saved-data-files__list article > div {
display: flex;
align-items: center;
gap: 6px;
min-width: 0;
}
.saved-data-files__list code {
min-width: 0;
flex: 1;
overflow: hidden;
color: #b8c6b9;
font-size: 10px;
text-overflow: ellipsis;
white-space: nowrap;
}
.saved-data-files__copy-name {
justify-self: start;
padding: 0;
}