Skip to content

Commit 3af7637

Browse files
committed
fix: hide scrollbar
Signed-off-by: amitamrutiya <[email protected]>
1 parent 7a09818 commit 3af7637

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/custom/Workspaces/styles.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,12 @@ export const RecentActivityGrid = styled(Grid)({
396396
display: 'flex',
397397
flexDirection: 'column',
398398
maxHeight: '14.5rem',
399-
overflowY: 'scroll'
399+
overflowY: 'scroll',
400+
scrollbarWidth: 'none',
401+
'&::-webkit-scrollbar': {
402+
display: 'none'
403+
},
404+
'-ms-overflow-style': 'none'
400405
});
401406

402407
export const DateGrid = styled(Grid)(({ theme }) => ({

0 commit comments

Comments
 (0)