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
60 lines (54 loc) · 1.21 KB
/
styles.ts
File metadata and controls
60 lines (54 loc) · 1.21 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
import { css } from 'emotion'
export const wrapper = css`
position: relative;
display: flex;
background-color: var(--color-dark-1);
height: 50px;
justify-content: center;
align-items: center;
`
export const app = css`
outline: none;
border: 0;
width: 100%;
cursor: pointer;
background-color: var(--color-dark-1);
display: flex;
align-items: center;
color: var(--color-black-1);
padding: var(--padding-3) var(--padding-4);
white-space: nowrap;
`
export const appSelected = css`
background-color: var(--color-dark-2);
`
export const currentApp = (color: string) => css`
border: 2px solid ${color};
border-radius: 50%;
color: var(--color-black-1);
background-color: var(--color-white-1);
width: 30px;
height: 30px;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
font-size: var(--font-size-2);
font-weight: bold;
`
export const overlay = css`
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: 99999;
`
export const appsList = css`
position: absolute;
left: calc(100% + 1px);
top: 0;
background-color: #fff;
border-right: 1px solid var(--color-white-2);
border-bottom: 1px solid var(--color-white-2);
`