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
85 lines (72 loc) · 1.52 KB
/
styles.ts
File metadata and controls
85 lines (72 loc) · 1.52 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import { css } from 'emotion'
import { colors } from '../../theme'
export const wrapper = css({
display: 'flex',
flexDirection: 'column',
padding: '2rem',
height: '100%',
boxSizing: 'border-box',
overflowY: 'scroll',
maxHeight: '100vh',
})
export const panels = css({
display: 'flex',
justifyContent: 'space-around',
})
export const panel = css({
padding: '0.25rem',
'> span': {
margin: '0 0.25rem',
},
})
export const statsContainer = css({
marginBottom: '2rem',
})
export const component = css({
display: 'flex',
alignItems: 'stretch',
marginBottom: '0.5rem',
cursor: 'pointer',
})
export const componentName = css({
flex: 0,
borderTopLeftRadius: 3,
borderBottomLeftRadius: 3,
backgroundColor: colors.highlight,
color: colors.foreground,
padding: '0 0.5rem',
})
export const componentPaths = css({
flex: 1,
backgroundColor: colors.foreground,
borderTopRightRadius: 3,
borderBottomRightRadius: 3,
display: 'flex',
alignItems: 'center',
padding: '0 0.5rem',
})
export const componentPathsCount = css({
padding: '0 0.5rem',
color: colors.foreground,
})
export const faded = css({
opacity: 0.75,
})
export const componentPathsBody = css({
display: 'flex',
flexDirection: 'column',
width: '100%',
})
export const componentPathsHeader = css({
display: 'flex',
justifyContent: 'flex-end',
height: '1rem',
})
export const separator = css({
opacity: 0.25,
padding: '0 3px',
})
export const componentPathsItems = css({
display: 'flex',
flexWrap: 'wrap',
})