feat(participants-pane) updated styles for add breakout and invite buttons

This commit is contained in:
Calin Chitu 2022-01-07 17:03:52 +02:00 committed by Calinteodor
parent db37cd37c8
commit 4878a00014
2 changed files with 9 additions and 5 deletions

View File

@ -1,15 +1,16 @@
import BaseTheme from '../../../base/ui/components/BaseTheme.native'; import BaseTheme from '../../../base/ui/components/BaseTheme.native';
const baseButton = { const baseButton = {
height: BaseTheme.spacing[6], borderRadius: BaseTheme.shape.borderRadius,
marginTop: BaseTheme.spacing[2], height: BaseTheme.spacing[7],
marginTop: BaseTheme.spacing[3],
marginLeft: BaseTheme.spacing[3], marginLeft: BaseTheme.spacing[3],
marginRight: BaseTheme.spacing[3] marginRight: BaseTheme.spacing[3]
}; };
const baseLabel = { const baseLabel = {
fontSize: 15, fontSize: 15,
lineHeight: 24, lineHeight: 30,
textTransform: 'capitalize' textTransform: 'capitalize'
}; };

View File

@ -240,13 +240,16 @@ export default {
inviteButton: { inviteButton: {
backgroundColor: BaseTheme.palette.action01, backgroundColor: BaseTheme.palette.action01,
borderRadius: BaseTheme.shape.borderRadius,
height: BaseTheme.spacing[7],
marginBottom: BaseTheme.spacing[4], marginBottom: BaseTheme.spacing[4],
marginLeft: BaseTheme.spacing[3], marginLeft: BaseTheme.spacing[3],
marginRight: BaseTheme.spacing[3] marginRight: BaseTheme.spacing[3]
}, },
inviteLabel: { inviteLabel: {
...BaseTheme.typography.labelButtonLarge, fontSize: 15,
lineHeight: 30,
textTransform: 'capitalize' textTransform: 'capitalize'
}, },
@ -330,7 +333,7 @@ export default {
borderStyle: 'solid', borderStyle: 'solid',
borderColor: BaseTheme.palette.border02, borderColor: BaseTheme.palette.border02,
backgroundColor: BaseTheme.palette.uiBackground, backgroundColor: BaseTheme.palette.uiBackground,
borderRadius: 6, borderRadius: BaseTheme.shape.borderRadius,
marginLeft: BaseTheme.spacing[3], marginLeft: BaseTheme.spacing[3],
marginRight: BaseTheme.spacing[3] marginRight: BaseTheme.spacing[3]
}, },