You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
493 B
32 lines
493 B
|
|
const styles = {
|
|
contact: {
|
|
border: '1px solid #dadada',
|
|
background: 'whitesmoke',
|
|
borderRadius: 3,
|
|
margin: 4,
|
|
padding: '6px 10px',
|
|
display: 'flex',
|
|
justifyContent: 'space-between'
|
|
},
|
|
payer: {
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
},
|
|
pay: {
|
|
height: 35,
|
|
},
|
|
input: {
|
|
height: 35,
|
|
width: 70,
|
|
paddingLeft: 6,
|
|
fontSize: 20,
|
|
},
|
|
x: {
|
|
color: 'grey',
|
|
cursor: 'pointer',
|
|
margin: '0 7px',
|
|
}
|
|
}
|
|
|
|
export default styles
|