From 4e6a5fa73e2e705e9f859a3e58d8f0b281331de9 Mon Sep 17 00:00:00 2001 From: DinhTran Date: Fri, 1 Mar 2024 17:50:33 +0700 Subject: [PATCH] fix: update padding bottom table in mobile --- .../TransactionMetadata/TransactionSignatories/styles.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/TransactionDetail/TransactionMetadata/TransactionSignatories/styles.ts b/src/components/TransactionDetail/TransactionMetadata/TransactionSignatories/styles.ts index eafff32388..3189aa3786 100644 --- a/src/components/TransactionDetail/TransactionMetadata/TransactionSignatories/styles.ts +++ b/src/components/TransactionDetail/TransactionMetadata/TransactionSignatories/styles.ts @@ -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)(() => ({