Skip to content

Commit efa00d5

Browse files
committed
📄 Add LICENSE
1 parent 9032961 commit efa00d5

File tree

3 files changed

+27
-4
lines changed

3 files changed

+27
-4
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Marc
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

client/src/containers/Header/style.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,9 @@ export const NavRight = styled.div`
3636

3737
export const Title = styled.h1`
3838
color: rgb(255, 255, 255);
39-
/* color: rgb(251, 197, 0); */
39+
font-family: Verdana, Geneva, Tahoma, sans-serif;
4040
font-weight: 500;
41+
letter-spacing: 0.02rem;
4142
4243
@media screen and (max-width: 600px) {
4344
display: none;

client/src/containers/Modal/style.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const ModalBackdrop = styled.div`
66
left: 0;
77
width: 100vw;
88
height: 100vh;
9-
background-color: rgba(48, 49, 48, .5);
9+
background-color: rgba(48, 49, 48, 0.5);
1010
z-index: 1000;
1111
`;
1212

@@ -34,9 +34,10 @@ export const ModalHeader = styled.div`
3434

3535
export const ModalTitle = styled.h3`
3636
margin: 0 auto;
37+
font-family: 'Abel', sans-serif;
3738
font-size: 1.4rem;
3839
font-weight: 500;
39-
color: rgba(255, 255, 255, .8);
40+
color: rgba(255, 255, 255, 0.8);
4041
`;
4142

4243
export const ModalCloseBtn = styled.div`
@@ -46,7 +47,7 @@ export const ModalCloseBtn = styled.div`
4647
font-size: 1.3rem;
4748
font-weight: 700;
4849
position: relative;
49-
color: rgba(255, 255, 255, .8);
50+
color: rgba(255, 255, 255, 0.8);
5051
outline: none;
5152
cursor: pointer;
5253
`;

0 commit comments

Comments
 (0)