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
79 lines (69 loc) · 1.33 KB
/
styles.ts
File metadata and controls
79 lines (69 loc) · 1.33 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
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,
padding: '1rem',
boxSizing: 'border-box',
display: 'flex',
flexDirection: 'column',
backgroundColor: colors.foreground,
borderRadiusTopRight: 3,
borderRadiusBottomRight: 3,
boxShadow: '5px 5px 20px 5px rgba(0,0,0,0.10)',
})
export const newPort = css({
border: 0,
padding: '0.5rem',
borderRadius: 3,
outline: 'none',
fontSize: 16,
width: 75,
})
export const appHost = css({
border: 0,
padding: '0.5rem',
borderRadius: 3,
outline: 'none',
fontSize: 16,
width: 150,
})
export const configWrapper = css({
display: 'flex',
alignItems: 'center',
marginBottom: '1rem',
})
export const configTitle = css({
margin: 0,
fontSize: 18,
color: colors.blue,
})
export const configDescription = css({
display: 'flex',
width: '400px',
flexDirection: 'column',
})
export const configValue = css({
marginLeft: '1rem',
})
export const code = css({
borderRadius: 3,
padding: '10px',
margin: 0,
background: colors.foreground,
})