fix(conference/native): fixed title bar indicators style

This commit is contained in:
Calin-Teodor 2022-11-18 12:05:06 +02:00 committed by Saúl Ibarra Corretgé
parent 867c488e10
commit 5cde9a138b
2 changed files with 12 additions and 6 deletions

View File

@ -71,8 +71,7 @@ export default {
},
qualityLabelContainer: {
borderBottomLeftRadius: 3,
borderTopLeftRadius: 3,
borderRadius: BaseTheme.shape.borderRadius,
flexShrink: 1,
paddingHorizontal: 2,
justifyContent: 'center',

View File

@ -1,5 +1,3 @@
// @flow
import BaseTheme from '../../../base/ui/components/BaseTheme.native';
import { SMALL_THUMBNAIL_SIZE } from '../../constants';
@ -10,7 +8,7 @@ export const AVATAR_SIZE = 50;
const indicatorContainer = {
backgroundColor: 'rgba(0, 0, 0, 0.7)',
borderRadius: 4,
borderRadius: BaseTheme.shape.borderRadius,
margin: 2,
padding: 2
};
@ -119,7 +117,16 @@ export default {
width: SMALL_THUMBNAIL_SIZE
},
indicatorContainer,
indicatorContainer: {
...indicatorContainer,
flexShrink: 1,
height: 32,
justifyContent: 'center',
marginBottom: BaseTheme.spacing[0],
marginHorizontal: BaseTheme.spacing[1],
marginTop: 6,
width: 32
},
/**
* The thumbnails indicator container.