We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 884443a + a83bae5 commit 3862970Copy full SHA for 3862970
1 file changed
src/custom/Modal/index.tsx
@@ -120,7 +120,12 @@ export const ModalBody = styled(Paper)(({ theme }) => ({
120
padding: '1rem',
121
backgroundColor: theme.palette.background.surfaces,
122
overflowY: 'auto',
123
- height: '100%'
+ height: '100%',
124
+ scrollbarWidth: 'none',
125
+ '&::-webkit-scrollbar': {
126
+ display: 'none'
127
+ },
128
+ '-ms-overflow-style': 'none'
129
}));
130
131
const StyledFooter = styled('div', {
0 commit comments