fix(conference/native): apply width and height only on the connection indicator

This commit is contained in:
Calin-Teodor 2022-11-18 13:17:51 +02:00 committed by Saúl Ibarra Corretgé
parent 0cb95f1dd6
commit 1259e54d46
1 changed files with 4 additions and 4 deletions

View File

@ -9,10 +9,8 @@ export const AVATAR_SIZE = 50;
const indicatorContainer = {
backgroundColor: 'rgba(0, 0, 0, 0.7)',
borderRadius: BaseTheme.shape.borderRadius,
height: 32,
margin: 2,
padding: 2,
width: 32
padding: 2
};
/**
@ -122,10 +120,12 @@ export default {
indicatorContainer: {
...indicatorContainer,
flexShrink: 1,
height: 32,
justifyContent: 'center',
marginBottom: BaseTheme.spacing[0],
marginHorizontal: BaseTheme.spacing[1],
marginTop: BaseTheme.spacing[2]
marginTop: BaseTheme.spacing[2],
width: 32
},
/**