Enhance modal components with consistent button sizes and improve calendar styles for better responsiveness and layout

This commit is contained in:
Mo Tarbin
2025-08-23 17:15:18 -04:00
parent 65f84b116f
commit 0f125cd63f
21 changed files with 346 additions and 30 deletions

View File

@@ -37,10 +37,10 @@ function SelectModal({
</Select>
<Box display={'flex'} justifyContent={'space-around'} mt={1}>
<Button onClick={handleSave} fullWidth sx={{ mr: 1 }}>
<Button size='lg' onClick={handleSave} fullWidth sx={{ mr: 1 }}>
Save
</Button>
<Button onClick={onClose} variant='outlined'>
<Button size='lg' onClick={onClose} variant='outlined'>
Cancel
</Button>
</Box>