all repos — caroster @ 832452704d5eae9e2164e58c086cdf365e51e5e7

[Octree] Group carpool to your event https://caroster.io

frontend/containers/NewPassengerDialog/useStyles.ts (view raw)

 1import makeStyles from '@mui/styles/makeStyles';
 2
 3const useStyles = makeStyles(theme => ({
 4    dialogContent: {
 5      padding: theme.spacing(1, 3, 3, 3),
 6    },
 7    label: {
 8      verticalAlign: 'text-bottom',
 9    },
10    labelIcon: {
11      verticalAlign: 'text-bottom',
12      fontSize: '1rem',
13      margin: theme.spacing(0, 0, .125, 0)
14    },
15    inputBox: {
16      padding: theme.spacing(1, 0),
17    },
18    buttonBox: {
19      padding: theme.spacing(2, 0, 1, 0),
20    },
21    title: {
22      textAlign: 'center',
23      width: '100%',
24      padding: theme.spacing(2, 8, 0, 8),
25    },
26    closeIcon: {
27      position: 'absolute',
28      top: theme.spacing(2),
29      right: theme.spacing(2),
30      cursor: 'pointer',
31      padding: theme.spacing(0.5),
32      width: theme.spacing(4),
33      height: theme.spacing(4),
34    },
35  }));
36  
37  export default useStyles;