Skip to content

Commit

Permalink
Fix button width on the assessment page
Browse files Browse the repository at this point in the history
  • Loading branch information
Viktor Riabkov committed Mar 1, 2024
1 parent 6785500 commit 98145ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/entities/activity/ui/ItemCardButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const ItemCardButton = ({
maxWidth="900px"
>
{(isBackShown && (
<Box width={greaterThanSM ? '200px' : '120px'} data-testid="assessment-back-button">
<Box width={greaterThanSM ? '208px' : '120px'} data-testid="assessment-back-button">
<BaseButton
type="button"
variant="outlined"
Expand All @@ -47,7 +47,7 @@ export const ItemCardButton = ({
</Box>
)) || <div></div>}

<Box width={greaterThanSM ? '200px' : '120px'} data-testid="assessment-next-button">
<Box width={greaterThanSM ? '208px' : '120px'} data-testid="assessment-next-button">
<BaseButton
type="button"
variant="contained"
Expand Down

0 comments on commit 98145ff

Please sign in to comment.