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
42 lines (37 loc) · 755 Bytes
/
styles.ts
File metadata and controls
42 lines (37 loc) · 755 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
import { css } from 'emotion'
import { colors } from '../../theme'
export const wrapper = css({
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
height: '100%',
width: '100%',
backgroundColor: colors.background,
color: colors.text,
flexDirection: 'column',
})
export const container = css({
position: 'relative',
maxWidth: 500,
})
export const input = css({
border: '1px solid transparent',
padding: '1rem',
fontSize: 16,
width: 300,
outline: 'none',
borderRadius: 3,
})
export const code = css({
borderRadius: 3,
padding: '10px',
background: colors.foreground,
})
export const newPort = css({
border: 0,
padding: '1rem',
borderRadius: 3,
outline: 'none',
fontSize: 18,
width: 75,
})