Skip to content

Commit

Permalink
💄 [Client] Nav.js : 충돌 전체 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
NAPP4287 committed Aug 28, 2021
2 parents ce826a9 + 72bef4e commit 51f5c0f
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 8 deletions.
11 changes: 7 additions & 4 deletions client/src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -109,14 +109,17 @@ nav {
}

section {
height: 55vh;
height: 60vh;
background-color: #ffe65b;
}

footer {
height: 10vh;
min-height: 67px;
line-height: 10vh;
height: 4.5vh;
line-height: 4.5vh;
text-align: center;
<<<<<<< HEAD
font-size: max(0.85vw, 11px);
=======
font-size: max(0.9vw, 10px);
>>>>>>> 72bef4e71c5f8079159c860dec0c8ffddb357c70
}
14 changes: 11 additions & 3 deletions client/src/comp/Nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function Nav({ isLogin }) {
height: 7vh;
border: none;
border-radius: 40px;
font-size: 0.98rem;
font-size: max(0.85vw, 12px);
font-weight: 700;
display: block;
margin-top: 5vh;
Expand All @@ -33,14 +33,18 @@ function Nav({ isLogin }) {
&:nth-child(1) {
margin-top: 0;
}
:hover {
background-color: black;
color: white;
}
`;

const Button2 = styled.button`
width: 20vh;
height: 7vh;
border: none;
border-radius: 40px;
font-size: 0.98rem;
font-size: max(0.85vw, 12px);
font-weight: 700;
display: block;
margin: 5vh auto 0;
Expand All @@ -53,6 +57,10 @@ function Nav({ isLogin }) {
&:nth-child(1) {
margin-top: 0;
}
:hover {
background-color: black;
color: white;
}
`;

const ProfileWrap = styled.div`
Expand All @@ -71,7 +79,7 @@ function Nav({ isLogin }) {
height: 7vh;
border: none;
border-radius: 40px;
font-size: 0.98rem;
font-size: max(0.85vw, 12px);
font-weight: 700;
display: block;
margin: 0 auto;
Expand Down
2 changes: 1 addition & 1 deletion client/src/comp/SearchInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const SearchWrap = styled.div`
border-radius: 30px;
margin-right: 10px;
outline: none;
padding-left: 20px;
padding-left: max;
}
> .searchBtn {
width: 6vw;
Expand Down

0 comments on commit 51f5c0f

Please sign in to comment.