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 (39 loc) · 831 Bytes
/
styles.ts
File metadata and controls
43 lines (39 loc) · 831 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'
import { colors } from '../../theme'
export const runtimeWrapper = css({
position: 'relative',
})
export const wrapper = css({
backgroundColor: colors.foreground,
width: 50,
borderRight: `1px solid ${colors.border}`,
boxShadow: '5px 0px 20px 5px rgba(0,0,0,0.10)',
})
export const button = css({
display: 'flex',
alignItems: 'center',
cursor: 'pointer',
padding: '0.25rem 0',
color: colors.text,
fontSize: 20,
justifyContent: 'center',
outline: 'none',
border: 0,
backgroundColor: 'transparent',
width: 50,
height: 50,
opacity: 0.5,
':hover': {
opacity: 0.75,
},
})
export const activeButton = css({
opacity: 1,
':hover': {
opacity: 1,
},
})
export const divider = css({
borderBottom: `1px solid ${colors.background}`,
margin: '0 5px',
})