main
css 43 lines 754 Bytes
Raw
1 .Toolbar {
2 padding: 0.25rem 0;
3 flex: 0 0 auto;
4 display: flex;
5 flex-direction: column;
6 gap: 0.25rem;
7 }
8
9 .BadgesContainer {
10 display: flex;
11 flex-direction: column;
12 gap: 0.25rem;
13 }
14
15 .BadgesContainer:not(:empty) {
16 padding-bottom: 0.25rem;
17 border-bottom: 1px solid var(--color-border);
18 }
19
20 .Content {
21 user-select: none;
22 overflow-y: auto;
23 }
24
25 .Component {
26 flex: 1;
27 font-weight: bold;
28 font-family: var(--font-family-monospace);
29 font-size: var(--font-size-monospace-normal);
30 white-space: nowrap;
31 overflow-x: hidden;
32 text-overflow: ellipsis;
33 padding-bottom: 0.25rem;
34 border-bottom: 1px solid var(--color-border);
35 }
36
37 .CurrentCommit {
38 display: block;
39 width: 100%;
40 text-align: left;
41 background: none;
42 border: none;
43 }