Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
fix: update padding bottom table in mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
DinhTran committed Mar 1, 2024
1 parent 6136d30 commit 4e6a5fa
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,12 @@ export const TableProtocol = styled(Table)(({ theme }) => ({
export const Wrapper = styled(Box)(({ theme }) => ({
border: `1px solid ${theme.isDark ? theme.palette.secondary[700] : theme.palette.primary[200]}`,
borderRadius: theme.spacing(2),
overflow: "hidden"
overflow: "hidden",
"& .table-wrapper": {
[theme.breakpoints.down("sm")]: {
paddingBottom: "8px"
}
}
}));

export const WrapperRowContent = styled(Box)(() => ({
Expand Down

0 comments on commit 4e6a5fa

Please sign in to comment.