Browse Source

style: adjust data row default width

next
Tom Kirkpatrick 6 years ago
parent
commit
ea5456b6d2
No known key found for this signature in database GPG Key ID: 72203A8EC5967EA8
  1. 4
      app/components/UI/DataRow.js

4
app/components/UI/DataRow.js

@ -5,10 +5,10 @@ import { Text } from 'components/UI'
const DataRow = ({ left, right, ...rest }) => (
<Flex alignItems="center" py={3} {...rest} justifyContent="space-between">
<Text width={2 / 5} fontWeight="normal">
<Text width={1 / 2} fontWeight="normal">
{left}
</Text>
<Text width={3 / 5} textAlign="right">
<Text width={1 / 2} textAlign="right">
{right}
</Text>
</Flex>

Loading…
Cancel
Save