feat(participants-pane) updated styles for add breakout and invite buttons
This commit is contained in:
parent
db37cd37c8
commit
4878a00014
|
@ -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'
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -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]
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue