41 lines
737 B
JavaScript
41 lines
737 B
JavaScript
import typographyStyles from 'src/components/typography/styles'
|
|
import { offColor } from 'src/styling/variables'
|
|
|
|
const { label1, p } = typographyStyles
|
|
|
|
export default {
|
|
tr: ({ height }) => ({
|
|
margin: 0,
|
|
height
|
|
}),
|
|
table: ({ width }) => ({
|
|
width
|
|
}),
|
|
head: {
|
|
display: 'flex',
|
|
flex: 1,
|
|
justifyContent: 'space-between',
|
|
alignItems: 'center',
|
|
paddingRight: 12
|
|
},
|
|
button: {
|
|
marginBottom: 1
|
|
},
|
|
itemWrapper: {
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
marginTop: 16,
|
|
minHeight: 35
|
|
},
|
|
label: {
|
|
extend: label1,
|
|
color: offColor,
|
|
marginBottom: 4
|
|
},
|
|
item: {
|
|
extend: p,
|
|
overflow: 'hidden',
|
|
textOverflow: 'ellipsis',
|
|
whiteSpace: 'nowrap'
|
|
}
|
|
}
|