fix(title-bar) Fix native titlebar (#10882)

This commit is contained in:
Robert Pintilii 2022-01-31 11:47:53 +02:00 committed by GitHub
parent beea4b5b62
commit b21beecbea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -132,7 +132,6 @@ export default {
},
alwaysOnTitleBar: {
padding: 4,
paddingRight: 0,
borderRadius: 6,
backgroundColor: 'rgba(0, 0, 0, .5)',
@ -141,7 +140,11 @@ export default {
alignSelf: 'flex-start',
alignItems: 'center',
justifyContent: 'center',
marginTop: BaseTheme.spacing[2]
marginTop: BaseTheme.spacing[2],
'&:not(:empty)': {
padding: 4
}
},
expandedLabelWrapper: {