🐛🎨 Fix de la largeur des boutons dans des cartes sur mobile (#1957)

pull/2000/head
Jérémy Rialland 2022-02-07 09:37:19 +01:00 committed by GitHub
parent bbcb981c3e
commit 279098edaf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -90,6 +90,9 @@ const StyledHeader = styled(H3)`
`
const CardButton = styled(StyledButton)`
margin: ${({ theme }) => theme.spacings.sm} 0;
@media (max-width: ${({ theme }) => theme.breakpointsWidth.sm}) {
width: initial;
}
`
const IconContainer = styled.div`