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
34 lines (31 loc) · 661 Bytes
/
styles.ts
File metadata and controls
34 lines (31 loc) · 661 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
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',
whiteSpace: 'nowrap',
display: 'flex',
alignItems: 'center',
backgroundColor: colors.foreground,
borderRadiusTopRight: 3,
borderRadiusBottomRight: 3,
boxShadow: '5px 5px 20px 5px rgba(0,0,0,0.10)',
})