Skip to content

Commit

Permalink
fix: MET-1606 fix table blur text
Browse files Browse the repository at this point in the history
  • Loading branch information
Sotatek-TaiTruong committed Oct 16, 2023
1 parent 0c28874 commit f1f0ad1
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/components/Contracts/modals/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ export const ModalContent = styled(Box)`
gap: 12px;
max-height: 70vh;
padding: 4px;
overflow-y: auto;
&::-webkit-scrollbar {
width: 5px;
}
${({ theme }) => theme.breakpoints.down("sm")} {
max-height: 70vh;
}
Expand All @@ -37,7 +33,7 @@ export const StyledList = styled(List)`
background-color: ${({ theme }) => (theme.isDark ? theme.palette.secondary[100] : theme.palette.common.white)};
border-radius: 8px;
box-shadow: 1px 2px 4px 0px rgba(67, 70, 86, 0.2);
overflow: hidden;
overflow-y: auto;
padding: 0px;
`;

Expand Down

0 comments on commit f1f0ad1

Please sign in to comment.