forked from cerebral/overmind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelements.tsx
More file actions
34 lines (32 loc) · 789 Bytes
/
elements.tsx
File metadata and controls
34 lines (32 loc) · 789 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
import styled from '../../styled-components'
export const Wrapper = styled.div`
background-color: inherit;
`
export const QuickstartWrapper = styled.div`
height: 75px;
position: fixed;
bottom: 0;
left: 0;
width: 100vw;
display: flex;
bottom: -75px;
transition: bottom 0.5s ease-out;
`
export const Quickstart = styled.a`
cursor: pointer;
border: 2px solid ${({ theme }) => theme.color.dark};
background-color: ${({ theme }) =>
theme.color.lighten(theme.color.dark, -0.5)};
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
flex: 1;
> *:nth-child(2) {
margin-left: 15px;
}
color: ${({ theme }) => theme.color.fade(theme.color.white, 0.25)};
:hover {
color: ${({ theme }) => theme.color.white};
}
`