fix: responsive behavior for info cards (#5655)
Responsive behavior for info cards Decreases margin, font size, card height, and grid gap in mobile
This commit is contained in:
parent
c2342a86d6
commit
45419c2739
@ -18,19 +18,23 @@ const StyledCard = styled.div<{ isDarkMode: boolean; backgroundImgSrc?: string }
|
||||
justify-content: space-between;
|
||||
text-decoration: none;
|
||||
color: ${({ theme }) => theme.textPrimary};
|
||||
padding: 40px;
|
||||
height: ${({ backgroundImgSrc }) => (backgroundImgSrc ? 360 : 200)}px;
|
||||
padding: 24px;
|
||||
height: 200px;
|
||||
border-radius: 24px;
|
||||
border: 1px solid ${({ theme, isDarkMode }) => (isDarkMode ? 'transparent' : theme.backgroundOutline)};
|
||||
|
||||
&:hover {
|
||||
border: 1px solid ${({ theme, isDarkMode }) => (isDarkMode ? theme.backgroundOutline : theme.textTertiary)};
|
||||
}
|
||||
@media screen and (min-width: ${BREAKPOINTS.sm}px) {
|
||||
height: ${({ backgroundImgSrc }) => (backgroundImgSrc ? 360 : 200)}px;
|
||||
padding: 40px;
|
||||
}
|
||||
`
|
||||
|
||||
const CardTitle = styled.div`
|
||||
font-size: 28px;
|
||||
line-height: 36px;
|
||||
font-size: 20px;
|
||||
line-height: 28px;
|
||||
font-weight: 500;
|
||||
|
||||
@media screen and (min-width: ${BREAKPOINTS.md}px) {
|
||||
@ -45,12 +49,12 @@ const CardTitle = styled.div`
|
||||
`
|
||||
|
||||
const CardDescription = styled.div`
|
||||
font-size: 20px;
|
||||
line-height: 28px;
|
||||
|
||||
@media screen and (min-width: ${BREAKPOINTS.sm}px) {
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
|
||||
@media screen and (min-width: ${BREAKPOINTS.sm}px) {
|
||||
font-size: 20px;
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
@media screen and (min-width: ${BREAKPOINTS.lg}px) {
|
||||
|
@ -77,12 +77,13 @@ const Content = styled.div`
|
||||
|
||||
const CardGrid = styled.div`
|
||||
display: grid;
|
||||
gap: 36px;
|
||||
gap: 12px;
|
||||
width: 100%;
|
||||
grid-template-columns: 1fr;
|
||||
|
||||
@media screen and (min-width: ${BREAKPOINTS.sm}px) {
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 32px;
|
||||
}
|
||||
`
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user