Skip to content

Commit

Permalink
revert styles for QA testing
Browse files Browse the repository at this point in the history
  • Loading branch information
vmilan committed Jun 3, 2024
1 parent f1b415f commit 1ac01a6
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 17 deletions.
7 changes: 0 additions & 7 deletions packages/react-ui/src/components/molecules/Menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,6 @@ import { Menu as MuiMenu, styled } from '@mui/material';
const StyledMenu = styled(MuiMenu, {
shouldForwardProp: (prop) => !['extended', 'width', 'height'].includes(prop)
})(({ extended, width, height, theme }) => ({
'.MuiMenu-list': {
backgroundColor: '#ff970038 !important', // TODO: remove, just for QA purposes

'& .MuiList-root': {
backgroundColor: 'transparent !important' // TODO: remove, just for QA purposes,
}
},
...(extended && {
'.MuiMenuItem-root': {
minHeight: theme.spacing(6)
Expand Down
4 changes: 0 additions & 4 deletions packages/react-ui/src/components/molecules/MenuItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ const StyledMenuItem = styled(MuiMenuItem, {
shouldForwardProp: (prop) =>
!['subtitle', 'destructive', 'extended', 'iconColor'].includes(prop)
})(({ subtitle, destructive, extended, iconColor, theme }) => ({
'&.MuiMenuItem-root': {
backgroundColor: '#fbf6e8 !important' // TODO: remove, just for QA purposes
},

...(subtitle && {
pointerEvents: 'none',
columnGap: 0,
Expand Down
6 changes: 0 additions & 6 deletions packages/react-ui/src/components/molecules/MenuList.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,6 @@ const StyledMenuList = styled(MuiMenuList, {
}
}),
'&.MuiList-root': {
backgroundColor: '#ff970038 !important', // TODO: remove, just for QA purposes

'& .MuiList-root': {
backgroundColor: 'transparent !important' // TODO: remove, just for QA purposes,
},

...(width && {
width: width,
minWidth: width
Expand Down

0 comments on commit 1ac01a6

Please sign in to comment.