forked from cerebral/overmind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.ts
More file actions
43 lines (34 loc) · 735 Bytes
/
styles.ts
File metadata and controls
43 lines (34 loc) · 735 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
import { css } from 'emotion'
export const wrapper = css`
font-family: monospace;
font-size: 16px;
line-height: 20px;
`
export const smallWrapper = css`
font-family: monospace;
font-size: 12px;
line-height: 16px;
`
export const key = css`
margin-right: 5px;
color: var(--color-white-1);
`
export const inlineNested = css`
cursor: pointer;
`
export const bracket = (pointer: boolean) => css`
cursor: ${pointer ? 'pointer' : 'default'};
`
export const stringValue = css`
color: #00990a;
`
export const genericValue = css`
color: var(--color-blue);
`
export const nestedChildren = css`
padding-left: 1rem;
`
export const keyCount = css`
font-size: var(--font-size-2);
color: var(--color-white-4);
`