mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
6ebc460b66
Admin user management page
29 lines
543 B
JavaScript
29 lines
543 B
JavaScript
import Styles from '../../../styles';
|
|
|
|
const { color, font, padding } = Styles;
|
|
|
|
export default {
|
|
buttonStyles: {
|
|
fontSize: font.small,
|
|
height: '38px',
|
|
marginButtom: '5px',
|
|
paddingBottom: 0,
|
|
paddingLeft: 0,
|
|
paddingRight: 0,
|
|
paddingTop: 0,
|
|
width: '180px',
|
|
},
|
|
buttonWrapperStyles: {
|
|
display: 'flex',
|
|
justifyContent: 'space-between',
|
|
},
|
|
radioElementStyles: {
|
|
paddingBottom: padding.base,
|
|
},
|
|
roleTitleStyles: {
|
|
color: color.brand,
|
|
fontSize: font.mini,
|
|
marginBottom: 0,
|
|
},
|
|
};
|