-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathheader.style.js
More file actions
53 lines (47 loc) · 1.05 KB
/
header.style.js
File metadata and controls
53 lines (47 loc) · 1.05 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
/* eslint-disable import/prefer-default-export */
import styled from "styled-components";
export const HeaderContainer = styled.div`
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 10px;
`;
export const NoteEditContainer = styled.div`
display: flex;
align-items: center;
`;
export const NoteTitle = styled.input`
background: #fafafa;
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
border-radius: 3px;
text-align: center;
font-size: 16px;
border: none;
border-radius: 5px;
width: 160px;
height: 47px;
`;
export const DownloadNoteBook = styled.button`
display: flex;
align-items: center;
justify-content: center;
background: #ffdf28;
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
border-radius: 3px;
font-size: 15px;
border: none;
cursor: pointer;
margin-right: 20px;
width: 185px;
height: 47px;
`;
export const AddNoteInput = styled.input`
opacity: 0;
position: absolute;
z-index: -1;
`;
export const AddNoteLabel = styled.label`
cursor: pointer;
margin-left: 5px;
`;