mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
ref(settings-dialog) Refactor styles (#13017)
Remove unused styles Move some styles to their tab Convert CalendarTab to TS Fix mobile styles
This commit is contained in:
@@ -84,14 +84,25 @@ const styles = (theme: Theme) => {
|
||||
return {
|
||||
container: {
|
||||
display: 'flex',
|
||||
width: '100%'
|
||||
width: '100%',
|
||||
|
||||
'@media (max-width: 607px)': {
|
||||
flexDirection: 'column' as const
|
||||
}
|
||||
},
|
||||
|
||||
column: {
|
||||
display: 'flex',
|
||||
flexDirection: 'column' as const,
|
||||
flex: 1,
|
||||
|
||||
'&:first-child:not(:last-child)': {
|
||||
marginRight: theme.spacing(3)
|
||||
marginRight: theme.spacing(3),
|
||||
|
||||
'@media (max-width: 607px)': {
|
||||
marginRight: 0,
|
||||
marginBottom: theme.spacing(3)
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user