Commit 9c334bc8 authored by Vignesh Mohankumar's avatar Vignesh Mohankumar Committed by GitHub

fix: tablet responsiveness on /about (#5591)

parent 6a833fc7
......@@ -64,8 +64,8 @@ const CardGrid = styled.div`
`
const InfoButton = styled(ButtonOutlined)`
font-size: 24px;
line-height: 32px;
font-size: 20px;
line-height: 28px;
padding: 16px;
`
......@@ -77,6 +77,14 @@ const ActionsContainer = styled.span`
& > * {
flex: 1;
}
@media screen and (min-width: ${BREAKPOINTS.md}px) {
flex-direction: column;
}
@media screen and (min-width: ${BREAKPOINTS.lg}px) {
flex-direction: row;
}
`
const StepList = styled.div`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment