mirror of
https://github.com/edumeet/edumeet.git
synced 2026-07-29 05:50:09 +00:00
Fix leaving buttons on smaller screens
This commit is contained in:
parent
7c09d28be1
commit
2f5c33d491
1 changed files with 10 additions and 1 deletions
|
|
@ -36,6 +36,15 @@ const styles = (theme) =>
|
|||
width : '90vw'
|
||||
}
|
||||
},
|
||||
dialogActions :
|
||||
{
|
||||
flexDirection : 'row',
|
||||
[theme.breakpoints.down('xs')] :
|
||||
{
|
||||
flexDirection : 'column'
|
||||
}
|
||||
},
|
||||
|
||||
logo :
|
||||
{
|
||||
marginLeft : theme.spacing(1.5),
|
||||
|
|
@ -106,7 +115,7 @@ const LeaveDialog = ({
|
|||
defaultMessage='Do you want to leave the room?'
|
||||
/>
|
||||
</DialogContent>
|
||||
<DialogActions>
|
||||
<DialogActions className={classes.dialogActions}>
|
||||
<Button
|
||||
onClick={handleStay}
|
||||
color='primary'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue