Change border

This commit is contained in:
Maria Rushkova 2021-11-24 10:58:19 +01:00
parent 0f4515ccb9
commit cea4c0bc0b
No known key found for this signature in database
GPG Key ID: B9B5728B991FF586
1 changed files with 4 additions and 4 deletions

View File

@ -92,10 +92,10 @@ const NavLinks = styled.ul`
display: flex;
flex-direction: column;
color: ${Colors.White};
border-bottom: 5px solid ${Colors.White};
border-bottom: 5px solid currentColor;
@media (max-width: 769px) {
border-bottom: 3px solid ${Colors.White};
border-bottom: 3px solid currentColor;
}
`
@ -104,12 +104,12 @@ const StyledLink = styled(Link)`
color: ${Colors.White};
font-size: calc(24px + (72 - 24) * ((100vw - 320px) / (1440 - 320)));
text-transform: uppercase;
border-top: 5px solid ${Colors.White};
border-top: 5px solid currentColor;
cursor: pointer;
padding: 0 24px;
@media (max-width: 769px) {
border-top: 3px solid ${Colors.White};
border-top: 3px solid currentColor;
padding: 0 16px;
}
`