|
|
|
|
@ -27,14 +27,15 @@ export const SolidButton = styled(ButtonSolid)` |
|
|
|
|
justify-content: center; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@media ${devices.mobile} { |
|
|
|
|
width: 100%; |
|
|
|
|
} |
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
height: 35px; |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: center; |
|
|
|
|
width: 100%; |
|
|
|
|
@media (orientation: landscape){ |
|
|
|
|
width: auto; |
|
|
|
|
} |
|
|
|
|
` |
|
|
|
|
: ''}; |
|
|
|
|
` |
|
|
|
|
@ -90,6 +91,11 @@ export const ContentWrapper = styled.div` |
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
margin-top: 10px; |
|
|
|
|
@media (orientation: landscape){ |
|
|
|
|
margin-top: 0; |
|
|
|
|
padding-left: 28px; |
|
|
|
|
height: 100%; |
|
|
|
|
} |
|
|
|
|
` |
|
|
|
|
: ''}; |
|
|
|
|
` |
|
|
|
|
@ -119,6 +125,10 @@ export const Body = styled.div` |
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
width: 100%; |
|
|
|
|
@media (orientation: landscape){ |
|
|
|
|
flex-direction: row; |
|
|
|
|
height: auto; |
|
|
|
|
} |
|
|
|
|
` |
|
|
|
|
: ''}; |
|
|
|
|
` |
|
|
|
|
@ -133,6 +143,9 @@ export const Aside = styled.aside` |
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
height: auto; |
|
|
|
|
@media (orientation: landscape){ |
|
|
|
|
min-width: 30%; |
|
|
|
|
} |
|
|
|
|
` |
|
|
|
|
: ''}; |
|
|
|
|
` |
|
|
|
|
@ -154,6 +167,15 @@ export const Navigations = styled.nav` |
|
|
|
|
@media ${devices.mobile} { |
|
|
|
|
width: 100%; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
@media (orientation: landscape){ |
|
|
|
|
border-right: 1px solid rgba(255, 255, 255, 0.4); |
|
|
|
|
height: 100%; |
|
|
|
|
} |
|
|
|
|
` |
|
|
|
|
: ''};
|
|
|
|
|
` |
|
|
|
|
|
|
|
|
|
type StyledLinkProps = { |
|
|
|
|
@ -184,10 +206,18 @@ export const StyledLink = styled(NavLink).attrs( |
|
|
|
|
line-height: 5.3rem; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@media ${devices.mobile} { |
|
|
|
|
font-size: 14px; |
|
|
|
|
line-height: 35px; |
|
|
|
|
} |
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
@media (orientation: landscape){ |
|
|
|
|
font-size: 16px; |
|
|
|
|
line-height: 35px; |
|
|
|
|
} |
|
|
|
|
@media (max-width: 750px){ |
|
|
|
|
font-size: 16px; |
|
|
|
|
line-height: 35px; |
|
|
|
|
} |
|
|
|
|
` |
|
|
|
|
: ''}; |
|
|
|
|
` |
|
|
|
|
|
|
|
|
|
type InlineButtonProps = { |
|
|
|
|
|