Skip to content

Commit

Permalink
Rydd opp i styling som gir lintfeil
Browse files Browse the repository at this point in the history
  • Loading branch information
kristeine committed Mar 21, 2024
1 parent ec752ac commit 4359463
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/frontend/components/Felleskomponenter/Steg/Steg.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,18 +73,18 @@ const StepperContainer = styled.div<{ $antallSteg: number }>`
margin: 0 auto;
display: flex;
justify-content: center;
@media all and ${device.mobile} {
${kompaktStepper};
${kompaktStepper};
}
${props =>
props.$antallSteg > 12 &&
css`
@media all and ${device.tablet} {
${kompaktStepper};
}
`}
}`;
${props =>
props.$antallSteg > 12 &&
css`
@media all and ${device.tablet} {
${kompaktStepper};
}
`}
`;

const Steg: React.FC<ISteg> = ({ tittel, skjema, gåVidereCallback, children }) => {
const navigate = useNavigate();
Expand Down

0 comments on commit 4359463

Please sign in to comment.