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
44 lines (39 loc) · 874 Bytes
/
styles.ts
File metadata and controls
44 lines (39 loc) · 874 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
import { css } from 'emotion'
export const list = css`
border-right: 1px solid var(--color-dark-3);
`
export const actionItem = css`
position: relative;
display: flex;
align-items: center;
padding: var(--padding-1);
cursor: pointer;
border-bottom: 1px solid var(--color-dark-3);
:hover {
background-color: var(--color-dark-3);
}
`
export const errorIndication = css`
margin-left: auto;
background-color: var(--color-red);
border-radius: 2px;
width: 10px;
height: 10px;
margin-right: 10px;
`
export const actionColor = css`
border-radius: 2px;
flex: 0 0 10px;
height: 10px;
margin-left: 10px;
margin-right: 10px;
`
export const actionSubItem = css`
padding: var(--padding-1);
cursor: pointer;
text-indent: 15px;
border-bottom: 1px solid var(--color-dark-3);
:hover {
background-color: var(--color-dark-3);
}
`