main
css 38 lines 656 Bytes
Raw
1 .EditorPane {
2 position: relative;
3 display: block;
4 background-color: var(--color-background);
5 color: var(--color-text);
6 font-family: var(--font-family-sans);
7 }
8
9 .EditorPane, .EditorPane * {
10 box-sizing: border-box;
11 -webkit-font-smoothing: var(--font-smoothing);
12 }
13
14 .EditorToolbar {
15 display: flex;
16 flex-direction: row;
17 align-items: center;
18 padding: 0.5rem;
19 border-bottom: 1px solid var(--color-border);
20 }
21
22 .EditorInfo {
23 padding: 0.5rem;
24 text-align: center;
25 }
26
27 .VRule {
28 height: 20px;
29 width: 1px;
30 flex: 0 0 1px;
31 margin: 0 0.5rem;
32 background-color: var(--color-border);
33 }
34
35 .WideButton {
36 flex: 1 0 auto;
37 display: flex;
38 }