export const styles = theme => ({
root: {
flexGrow: 1,
display: 'flex'
},
mainGrid: {
maxWidth: '100%'
},
content: {
flexGrow: 1,
height: '80vh',
overflow: 'auto'
},
button: {
margin: theme.spacing.unit
},
btnAlign: {
padding: theme.spacing.unit,
display: 'flex',
justifyContent: 'flex-end'
},
searchBox: {
padding: theme.spacing.unit * 2,
margib: '10px'
},
error: {
backgroundColor: theme.palette.error.dark,
color: '#fff',
fontSize: 14
},
success: {
backgroundColor: '#43A047',
color: '#fff',
fontSize: 14
},
close: {
padding: theme.spacing.unit / 2
}
});
|