|
|
|
|
@ -26,7 +26,7 @@ export const Wrapper = styled.div` |
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
/* padding-top: 4px; */ |
|
|
|
|
/* min-height: 84px; */ |
|
|
|
|
min-height: 84px; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
|
|
|
|
|
@media (max-width: 450px){ |
|
|
|
|
@ -114,7 +114,7 @@ export const WeekDaysWrapper = styled.div` |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: center; |
|
|
|
|
align-items: center; |
|
|
|
|
/* margin-top: 0.567rem; */ |
|
|
|
|
margin-top: 0.567rem; |
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
padding: 0 5px; |
|
|
|
|
@ -165,7 +165,8 @@ export const WeekName = styled.span` |
|
|
|
|
line-height: 1.5rem; |
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
font-size: 14px; |
|
|
|
|
font-weight: 600; |
|
|
|
|
font-size: 10px; |
|
|
|
|
line-height: 13px; |
|
|
|
|
padding-top: 6px; |
|
|
|
|
` |
|
|
|
|
@ -210,7 +211,6 @@ export const Arrow = styled.span<ArrowProps>` |
|
|
|
|
border-bottom: 0.15rem solid #fff; |
|
|
|
|
top: 50%; |
|
|
|
|
left: 50%; |
|
|
|
|
transform: translate(-50%, -50%); |
|
|
|
|
|
|
|
|
|
${({ direction }) => ( |
|
|
|
|
direction === 'left' |
|
|
|
|
@ -220,11 +220,11 @@ export const Arrow = styled.span<ArrowProps>` |
|
|
|
|
|
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
padding: 5px; |
|
|
|
|
border-left: 0.3rem solid #fff; |
|
|
|
|
border-left: 0.3rem solid #fff; |
|
|
|
|
width: 10px; |
|
|
|
|
height: 10px; |
|
|
|
|
padding: 4px; |
|
|
|
|
border-left: 0.4rem solid rgba(255, 255, 255, 0.5); |
|
|
|
|
border-bottom: 0.4rem solid rgba(255, 255, 255, 0.5); |
|
|
|
|
width: 8px; |
|
|
|
|
height: 8px; |
|
|
|
|
` |
|
|
|
|
: ''}; |
|
|
|
|
` |
|
|
|
|
|