Skip to content

Commit

Permalink
fix button sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
zuies committed Oct 3, 2023
1 parent 97392c1 commit 1fb3994
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -284,9 +284,8 @@ const CustomTable: React.FC<CustomTableProps> = ({
<>
<Button
onClick={handleOpenRolesPopup}
size="small"
variant="text"
sx={{ color: 'black' }}
sx={{ color: 'black', minWidth: '64px' }}
endIcon={
isRolesPopupOpen ? (
<MdOutlineKeyboardArrowUp />
Expand Down Expand Up @@ -363,7 +362,7 @@ const CustomTable: React.FC<CustomTableProps> = ({
onClick={handleOpenActivityPopup}
size="small"
variant="text"
sx={{ color: 'black' }}
sx={{ color: 'black', minWidth: '64px' }}
endIcon={
isActivityPopupOpen ? (
<MdOutlineKeyboardArrowUp />
Expand Down Expand Up @@ -440,7 +439,7 @@ const CustomTable: React.FC<CustomTableProps> = ({
onClick={handleOpenJoinedAtPopup}
size="small"
variant="text"
sx={{ color: 'black' }}
sx={{ color: 'black', minWidth: '64px' }}
endIcon={
isJoinedAtPopupOpen ? (
<MdOutlineKeyboardArrowUp />
Expand Down
2 changes: 1 addition & 1 deletion src/utils/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const theme = createTheme({
opacity: 0.7,
},
'@media (max-width:1023px)': {
minWidth: '100%',
width: '100%',
},
},
contained: {
Expand Down

0 comments on commit 1fb3994

Please sign in to comment.