diff --git a/src/components/PriceInput/PriceInput.tsx b/src/components/PriceInput/PriceInput.tsx index 98aea5d5..5b693f5e 100644 --- a/src/components/PriceInput/PriceInput.tsx +++ b/src/components/PriceInput/PriceInput.tsx @@ -99,9 +99,9 @@ const OpacitySpan = styled.span` ` const StyledContainer = styled.div` - width: 100%; - display: flex; + min-width: 100% !important; + display: flex !important; flex-direction: column; - position: inherit; + position: static !important; ` export default PriceInput diff --git a/src/components/TableCell/TableCell.tsx b/src/components/TableCell/TableCell.tsx index abc5a0ca..20cae643 100644 --- a/src/components/TableCell/TableCell.tsx +++ b/src/components/TableCell/TableCell.tsx @@ -6,10 +6,11 @@ const TableCell: React.FC = (props) => { } const StyledTableCell = styled.div` + width: 100% !important; color: inherit; flex: 1; - display: block; - position: inherit; + display: block !important; + position: static !important; ` export default TableCell