31 lines
504 B
JavaScript
31 lines
504 B
JavaScript
import { backgroundColor } from 'src/styling/variables'
|
|
|
|
export default {
|
|
wrapper: {
|
|
display: 'flex'
|
|
},
|
|
form: {
|
|
marginBottom: 36
|
|
},
|
|
title: {
|
|
marginTop: 0
|
|
},
|
|
row: {
|
|
width: 236,
|
|
display: 'grid',
|
|
gridTemplateColumns: 'repeat(2,1fr)',
|
|
gridTemplateRows: '1fr',
|
|
gridColumnGap: 18,
|
|
gridRowGap: 0
|
|
},
|
|
col2: {
|
|
width: 136
|
|
},
|
|
cashboxLabel: {
|
|
marginRight: 4,
|
|
fontSize: 20
|
|
},
|
|
cashboxEmptyPart: {
|
|
backgroundColor: `${backgroundColor}`
|
|
}
|
|
}
|