From b2906c2401a69eb190d07059a09f757679f82dd5 Mon Sep 17 00:00:00 2001 From: Zachary Thielemann Date: Wed, 3 Feb 2021 22:30:51 -0800 Subject: [PATCH] fix: width table --- src/components/PriceInput/PriceInput.tsx | 2 +- src/components/TableCell/TableCell.tsx | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/PriceInput/PriceInput.tsx b/src/components/PriceInput/PriceInput.tsx index eb9bd68f..5b693f5e 100644 --- a/src/components/PriceInput/PriceInput.tsx +++ b/src/components/PriceInput/PriceInput.tsx @@ -99,7 +99,7 @@ const OpacitySpan = styled.span` ` const StyledContainer = styled.div` - width: 100% !important; + min-width: 100% !important; display: flex !important; flex-direction: column; position: static !important; diff --git a/src/components/TableCell/TableCell.tsx b/src/components/TableCell/TableCell.tsx index 53131bd8..20cae643 100644 --- a/src/components/TableCell/TableCell.tsx +++ b/src/components/TableCell/TableCell.tsx @@ -6,6 +6,7 @@ const TableCell: React.FC = (props) => { } const StyledTableCell = styled.div` + width: 100% !important; color: inherit; flex: 1; display: block !important;