fix(conference/native): fixed title bar indicators style
This commit is contained in:
parent
867c488e10
commit
5cde9a138b
|
@ -71,8 +71,7 @@ export default {
|
|||
},
|
||||
|
||||
qualityLabelContainer: {
|
||||
borderBottomLeftRadius: 3,
|
||||
borderTopLeftRadius: 3,
|
||||
borderRadius: BaseTheme.shape.borderRadius,
|
||||
flexShrink: 1,
|
||||
paddingHorizontal: 2,
|
||||
justifyContent: 'center',
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue