Skip to content

Commit

Permalink
Malpanel css-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
betsytraran committed Apr 17, 2024
1 parent ba6533a commit 46dc40e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const MalPanel = ({

const DataCells = ({ id, malNavn, bestilling }) => (
<>
<Table.DataCell scope="row">
<Table.DataCell scope="row" width={'75%'}>
{erUnderRedigering(id) ? (
<EndreMalnavn
malNavn={malNavn}
Expand All @@ -59,7 +59,7 @@ export const MalPanel = ({
<span style={{ fontWeight: 'normal' }}>{malNavn}</span>
)}
</Table.DataCell>
<Table.DataCell align={'center'}>
<Table.DataCell align={'center'} width={'15%'}>
{erUnderRedigering(id) ? (
<Button variant={'secondary'} size={'small'} onClick={() => avsluttRedigering(id)}>
Avbryt
Expand All @@ -76,7 +76,7 @@ export const MalPanel = ({
/>
)}
</Table.DataCell>
<Table.DataCell>
<Table.DataCell width={'10%'}>
<SlettMal id={id} organisasjon={bestilling?.organisasjon} mutate={mutate} />
</Table.DataCell>
</>
Expand Down

0 comments on commit 46dc40e

Please sign in to comment.