|
|
|
@@ -1,5 +1,7 @@ |
|
|
|
import { Box } from "@mui/material"; |
|
|
|
import styled from "styled-components"; |
|
|
|
import selectedTheme from "../../themes"; |
|
|
|
import Link from "../Link/Link"; |
|
|
|
|
|
|
|
export const DrawerContainer = styled(Box)` |
|
|
|
display: flex; |
|
|
|
@@ -95,3 +97,19 @@ export const AuthButtonsDrawerContainer = styled(Box)` |
|
|
|
justify-content: space-around; |
|
|
|
`; |
|
|
|
export const HeaderContainer = styled(Box)``; |
|
|
|
|
|
|
|
export const MarketplaceLinkRoute = styled(Link)` |
|
|
|
text-decoration: none; |
|
|
|
font-family: ${selectedTheme.fonts.textFont}; |
|
|
|
font-size: 16px; |
|
|
|
line-height: 22px; |
|
|
|
letter-spacing: 0.02em; |
|
|
|
border-bottom: 1px dashed ${selectedTheme.colors.primaryPurple}; |
|
|
|
&:hover { |
|
|
|
border-bottom: 1px solid ${selectedTheme.colors.iconYellowColor}; |
|
|
|
} |
|
|
|
|
|
|
|
@media (max-width: 600px) { |
|
|
|
display: none; |
|
|
|
} |
|
|
|
`; |