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

pull/12585/head
Calin-Teodor 2 years ago committed by Saúl Ibarra Corretgé
parent 867c488e10
commit 5cde9a138b
  1. 3
      react/features/conference/components/native/carmode/styles.js
  2. 15
      react/features/filmstrip/components/native/styles.js

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

@ -1,5 +1,3 @@
// @flow
import BaseTheme from '../../../base/ui/components/BaseTheme.native'; import BaseTheme from '../../../base/ui/components/BaseTheme.native';
import { SMALL_THUMBNAIL_SIZE } from '../../constants'; import { SMALL_THUMBNAIL_SIZE } from '../../constants';
@ -10,7 +8,7 @@ export const AVATAR_SIZE = 50;
const indicatorContainer = { const indicatorContainer = {
backgroundColor: 'rgba(0, 0, 0, 0.7)', backgroundColor: 'rgba(0, 0, 0, 0.7)',
borderRadius: 4, borderRadius: BaseTheme.shape.borderRadius,
margin: 2, margin: 2,
padding: 2 padding: 2
}; };
@ -119,7 +117,16 @@ export default {
width: SMALL_THUMBNAIL_SIZE 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. * The thumbnails indicator container.

Loading…
Cancel
Save