lamassu-server/new-lamassu-admin/src/pages/Customers/components/EditableCard.styles.js
2021-12-06 18:31:31 +00:00

64 lines
1,021 B
JavaScript

import { tomato, spring4, comet } from 'src/styling/variables'
export default {
label1: {
display: 'flex',
width: 85,
justifyContent: 'right'
},
label1Pending: {
color: comet
},
label1Rejected: {
color: tomato
},
label1Accepted: {
color: spring4
},
editButton: {
marginTop: 30,
display: 'flex',
justifyContent: 'right'
},
deleteButton: {
marginRight: 8
},
editingWrapper: {
display: 'flex',
flexDirection: 'row',
justifyContent: 'space-between'
},
replace: {
marginTop: 30
},
input: {
display: 'none'
},
button: {
marginRight: 8
},
editingButtons: {
marginTop: 30,
display: 'flex',
justifyContent: 'right'
},
card: {
borderRadius: 10,
marginRight: 15,
marginBottom: 15
},
cardHeader: {
display: 'flex',
flexDirection: 'row',
marginBottom: 15
},
editIcon: {
marginTop: 5
},
cardIcon: {
marginTop: 7
},
cardTitle: {
margin: [[8, 15, 15, 15]]
}
}