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

Commit

Permalink
Merge pull request #3103 from cardano-foundation/fix/update-padding-b…
Browse files Browse the repository at this point in the history
…ottom-table-in-mobile

fix: update padding bottom table in mobile
  • Loading branch information
Sotatek-TaiTruong authored Mar 6, 2024
2 parents 27edadd + 4e6a5fa commit 1f5056d
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 1f5056d

Please sign in to comment.