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
62 lines (53 loc) · 1.09 KB
/
styles.ts
File metadata and controls
62 lines (53 loc) · 1.09 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
import { css } from 'emotion'
import { colors } from '../../theme'
export const wrapper = css({
display: 'flex',
flexDirection: 'column',
padding: '2rem 1rem',
height: '100vh',
boxSizing: 'border-box',
overflowY: 'scroll',
})
export const panels = css({
display: 'flex',
justifyContent: 'space-around',
marginBottom: '2rem',
})
export const panel = css({
padding: '0.25rem',
'> span': {
margin: '0 0.25rem',
},
})
export const flushWrapper = css({
margin: '0.5rem 1rem',
})
export const flushHeader = css({
display: 'flex',
})
export const flushTitle = css({
flex: 0,
padding: '0 0.5rem',
backgroundColor: colors.highlight,
color: colors.foreground,
borderTopLeftRadius: 3,
borderBottomLeftRadius: 3,
})
export const flushDetails = css({
flex: 1,
backgroundColor: colors.foreground,
borderTopRightRadius: 3,
borderBottomRightRadius: 3,
})
export const flushBody = css({
display: 'flex',
flexDirection: 'column',
padding: '0.5rem',
})
export const mutation = css({
display: 'flex',
alignItems: 'center',
'> *': {
marginRight: '1rem',
},
})