Skip to content

Commit

Permalink
Fixed number box size
Browse files Browse the repository at this point in the history
  • Loading branch information
dragoni7 committed Sep 16, 2024
1 parent 879d9a1 commit f633aca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/features/armor-optimization/NumberBoxes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ interface NumberBoxProps {
const NumberBox = styled(ButtonBase, {
shouldForwardProp: (prop) => prop !== 'isSelected',
})<NumberBoxProps>(({ isSelected, theme }) => ({
width: '30px',
height: '30px',
width: '40px',
height: '40px',
fontSize: 16,
[theme.breakpoints.between('lg', 'xl')]: {
width: '50px',
Expand Down

0 comments on commit f633aca

Please sign in to comment.