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
55 lines (48 loc) · 979 Bytes
/
styles.ts
File metadata and controls
55 lines (48 loc) · 979 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
49
50
51
52
53
54
55
import { css } from 'emotion'
export const wrapper = css`
display: flex;
flex-direction: column;
padding: var(--padding-4);
height: 100%;
box-sizing: border-box;
overflow-y: scroll;
`
export const panels = css`
display: flex;
justify-content: space-around;
`
export const panel = css`
padding: var(--padding-2);
> span {
margin: 0 var(--padding-2);
}
`
export const flushWrapper = css`
margin: 0 var(--padding-4);
margin-bottom: var(--padding-2);
border-top: 1px solid var(--color-dark-1);
background-color: var(--color-dark-3);
`
export const mutation = css`
display: flex;
border: 1px solid var(--color-dark-3);
border-top: 0;
padding: 0 var(--padding-2);
align-items: center;
> * {
margin-right: 10px;
}
> *:nth-child(1) {
flex: 0 0 150px;
}
> *:nth-child(2) {
flex: 1;
}
> *:nth-child(3) {
flex: 0 0 250px;
}
`
export const method = css`
color: var(--color-white-3);
font-weight: bold;
`