Skip to content

Commit

Permalink
Bruk styled-komponent ikke inline style
Browse files Browse the repository at this point in the history
  • Loading branch information
kristoiv committed Oct 5, 2023
1 parent e5a59ff commit 1044f36
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/src/personoversikt/SaksoversiktLinje.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const Container = styled.div`
justify-content: space-between;
height: 48px;
box-sizing: border-box;
margin-top: 1rem;
border-bottom: 1px solid var(--a-border-default);
padding: 0 0 0 2rem;
min-width: ${hotsakTotalMinWidth};
Expand All @@ -27,7 +28,7 @@ interface SaksoversiktLinjeProps {

export const SaksoversiktLinje: React.FC<SaksoversiktLinjeProps> = ({ sakerCount, hjelpemidlerCount }) => {
return (
<Container style={{ marginTop: '1rem' }}>
<Container>
<Flex>
<TabList role="tablist">
<TabLink to={`/personoversikt/saker`} title={`Saker (${sakerCount})`}>
Expand Down

0 comments on commit 1044f36

Please sign in to comment.