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
48 lines (43 loc) · 854 Bytes
/
styles.ts
File metadata and controls
48 lines (43 loc) · 854 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
44
45
46
47
48
import { css } from 'emotion'
import { colors } from '../../theme'
export const wrapper = css({
position: 'absolute',
left: '100%',
height: '100%',
zIndex: 999999,
top: 0,
})
export const overlay = css({
position: 'fixed',
top: 0,
left: 0,
width: '100vw',
height: '100vh',
})
export const contentWrapper = css({
position: 'absolute',
top: 0,
left: 0,
height: '100%',
padding: '0.5rem',
boxSizing: 'border-box',
display: 'flex',
backgroundColor: colors.dark,
borderRadiusTopRight: 3,
borderRadiusBottomRight: 3,
boxShadow: '5px 5px 20px 5px rgba(0,0,0,0.10)',
})
export const input = css({
border: 0,
outline: 'none',
padding: '0.5rem',
fontSize: 18,
borderRadius: 3,
})
export const button = css({
border: 0,
borderRadius: 3,
outline: 'none',
cursor: 'pointer',
marginLeft: '0.5rem',
})