lamassu-server/new-lamassu-admin/src/components/tables/DataTable.styles.js
2020-04-23 18:38:29 +02:00

20 lines
317 B
JavaScript

export default {
expandButton: {
border: 'none',
backgroundColor: 'transparent',
cursor: 'pointer',
padding: 4
},
row: {
borderRadius: 0
},
body: {
flex: [[1, 1, 'auto']]
},
table: ({ width }) => ({
width,
flex: 1,
display: 'flex',
flexDirection: 'column'
})
}