File tree Expand file tree Collapse file tree 2 files changed +12
-16
lines changed Expand file tree Collapse file tree 2 files changed +12
-16
lines changed Original file line number Diff line number Diff line change @@ -2,24 +2,23 @@ import styled from 'styled-components';
2
2
import { MdMovie } from 'react-icons/md' ;
3
3
4
4
export const StyledLoginBtn = styled . button `
5
- background-color: rgb(251, 197, 0);
6
- opacity: 0.8;
7
- color: rgb(35, 35, 35);
8
- padding: 1vh 4vw;
5
+ margin: 0 1vw;
6
+ padding: 0.5rem 2rem;
7
+ background-color: transparent;
8
+ color: rgb(251, 197, 0);
9
+ border: 0.15rem solid rgb(251, 197, 0);
9
10
border-radius: 10rem;
10
11
text-align: center;
11
- margin: 0 1vw;
12
- border: none;
13
- text-decoration: none;
14
- outline: none;
15
- font-size: 2vw;
16
- font-weight: 600;
12
+ font-family: 'Abel', sans-serif;
13
+ font-size: 1rem;
14
+ font-weight: 500;
17
15
letter-spacing: 0.05em;
18
16
transition: all 0.3s;
19
17
cursor: pointer;
20
18
21
19
:hover {
22
- opacity: 1;
20
+ background-color: rgb(251, 197, 0);
21
+ color: rgb(35, 35, 35);
23
22
}
24
23
` ;
25
24
@@ -30,6 +29,7 @@ export const StyledLoadMoreBtn = styled.button`
30
29
background-color: rgb(0, 0, 0);
31
30
color: rgb(255, 255, 255);
32
31
border-radius: 2rem;
32
+ border: none;
33
33
font-family: 'Abel', sans-serif;
34
34
font-size: 2vh;
35
35
transition: all 0.3s;
Original file line number Diff line number Diff line change @@ -26,11 +26,7 @@ const Header = () => {
26
26
</ NavRight >
27
27
</ NavHeader >
28
28
</ StyledHeader >
29
- < Modal
30
- isShowing = { isShowing }
31
- hide = { toggle }
32
- title = 'React Movie Account'
33
- >
29
+ < Modal isShowing = { isShowing } hide = { toggle } title = 'React Movie Account' >
34
30
< LoginButton > Sign In</ LoginButton >
35
31
< LoginButton > Create an account</ LoginButton >
36
32
</ Modal >
You can’t perform that action at this time.
0 commit comments