pull/2077/head
Jérémy Rialland 2022-03-24 17:49:52 +01:00 committed by Johan Girod
parent 21a45c1afc
commit 578a27b2d3
3 changed files with 6 additions and 4 deletions

View File

@ -7,7 +7,8 @@ import { LabelBody, RadioPoint, RadioSkeleton, VisibleRadio } from './Radio'
const Label = styled.span``
const Description = styled.p`
margin: ${({ theme }) => theme.spacings.sm} 0;
margin: 0;
margin-top: ${({ theme }) => theme.spacings.sm};
`
const StyledRadioPoint = styled(RadioPoint)`
@ -25,6 +26,7 @@ const StyledRadioSkeleton = styled(RadioSkeleton)`
flex: 1 100%;
border-width: 0px;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
padding: ${({ theme }) => theme.spacings.sm};
}
`

View File

@ -90,8 +90,8 @@ export const FormulaireS1S1Bis = ({ onChange }: Props) => {
<Tr>
<Trans>
<Th>Mois</Th>
<Th alignSelf="center">Situation liée à la crise sanitaire</Th>
<Th alignSelf="end">Montant de la réduction</Th>
<Th>Situation liée à la crise sanitaire</Th>
<Th>Montant de la réduction</Th>
</Trans>
</Tr>
</Thead>

View File

@ -45,7 +45,7 @@ export const Tr = styled.tr`
${Td}:last-child {
text-align: right;
}
${Td}:first-child, ${Td}:last-child {
${Td}:first-child, ${Td}:last-child, ${Th}:first-child, ${Th}:last-child {
flex: 1;
}
@media (min-width: ${({ theme }) => theme.breakpointsWidth.sm}) {