Skip to content

Commit

Permalink
Merge pull request #470 from primitivefinance/develop
Browse files Browse the repository at this point in the history
fix(input): input width
  • Loading branch information
zachdt authored Feb 4, 2021
2 parents 796312c + b2906c2 commit d92795e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/components/PriceInput/PriceInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 3 additions & 2 deletions src/components/TableCell/TableCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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

1 comment on commit d92795e

@vercel
Copy link

@vercel vercel bot commented on d92795e Feb 4, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.