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
38 lines (34 loc) · 696 Bytes
/
styles.ts
File metadata and controls
38 lines (34 loc) · 696 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
import { css } from 'emotion'
export const wrapper = css`
background-color: var(--color-dark-1);
width: 50px;
border-right: 1px solid var(--color-dark-3);
`
export const button = css`
display: flex;
align-items: center;
cursor: pointer;
padding: var(--padding-2) 0;
color: var(--color-white-1);
font-size: var(--font-size-4);
justify-content: center;
outline: none;
border: 0;
background-color: transparent;
width: 50px;
height: 50px;
opacity: 0.5;
:hover {
opacity: 0.75;
}
`
export const activeButton = css`
opacity: 1;
:hover {
opacity: 1;
}
`
export const divider = css`
border-bottom: 1px solid var(--color-dark-1);
margin: 0 5px;
`