All files / src/components/AddPatient style.js

0% Statements 0/2
100% Branches 0/0
0% Functions 0/1
0% Lines 0/1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40                                                                               
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
    }
});