2019-04-11 08:28:51 +00:00
|
|
|
// @flow
|
|
|
|
|
2022-02-23 13:46:38 +00:00
|
|
|
import BaseTheme from '../../../base/ui/components/BaseTheme.native';
|
2019-04-11 08:28:51 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
displayNameBackdrop: {
|
|
|
|
alignSelf: 'center',
|
2022-02-23 13:46:38 +00:00
|
|
|
backgroundColor: BaseTheme.palette.ui16,
|
2019-04-11 08:28:51 +00:00
|
|
|
borderRadius: 4,
|
2022-02-23 13:46:38 +00:00
|
|
|
paddingHorizontal: BaseTheme.spacing[3],
|
|
|
|
paddingVertical: BaseTheme.spacing[1]
|
2019-04-11 08:28:51 +00:00
|
|
|
},
|
|
|
|
|
2022-02-14 10:13:18 +00:00
|
|
|
displayNamePadding: {
|
2022-02-24 12:17:02 +00:00
|
|
|
padding: BaseTheme.spacing[1],
|
|
|
|
paddingRight: 6
|
2022-02-14 10:13:18 +00:00
|
|
|
},
|
|
|
|
|
2019-04-11 08:28:51 +00:00
|
|
|
displayNameText: {
|
2022-02-23 13:46:38 +00:00
|
|
|
color: BaseTheme.palette.text01,
|
2022-02-14 10:13:18 +00:00
|
|
|
fontSize: 14,
|
|
|
|
fontWeight: 'bold'
|
2019-04-11 08:28:51 +00:00
|
|
|
}
|
|
|
|
};
|