46 lines
740 B
JavaScript
46 lines
740 B
JavaScript
export default {
|
|
titleWrapper: {
|
|
display: 'flex',
|
|
justifyContent: 'space-between',
|
|
alignItems: 'center',
|
|
flexDirection: 'row'
|
|
},
|
|
wrapper: {
|
|
display: 'flex',
|
|
flexDirection: 'row',
|
|
height: '100%'
|
|
},
|
|
tableWrapper: {
|
|
flex: 1,
|
|
marginLeft: 40,
|
|
display: 'block',
|
|
overflowX: 'auto',
|
|
width: '100%',
|
|
maxWidth: '78%',
|
|
maxHeight: '70vh'
|
|
},
|
|
table: {
|
|
whiteSpace: 'nowrap',
|
|
display: 'block',
|
|
'& th': {
|
|
position: 'sticky',
|
|
top: 0
|
|
}
|
|
},
|
|
dateColumn: {
|
|
minWidth: 160
|
|
},
|
|
levelColumn: {
|
|
minWidth: 100
|
|
},
|
|
fillColumn: {
|
|
width: '100%'
|
|
},
|
|
button: {
|
|
margin: 8
|
|
},
|
|
buttonsWrapper: {
|
|
display: 'flex',
|
|
alignItems: 'center'
|
|
}
|
|
}
|