2022-03-17 14:13:58 +00:00
|
|
|
import { BoxModel } from '../../../base/styles';
|
|
|
|
import BaseTheme from '../../../base/ui/components/BaseTheme';
|
|
|
|
|
|
|
|
|
|
|
|
export const TEXT_COLOR = BaseTheme.palette.text01;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Styles of the navigation feature.
|
|
|
|
*/
|
|
|
|
export const navigationStyles = {
|
2022-06-09 14:23:56 +00:00
|
|
|
|
2022-03-17 14:13:58 +00:00
|
|
|
connectingScreenContainer: {
|
2022-03-23 12:38:42 +00:00
|
|
|
backgroundColor: BaseTheme.palette.uiBackground,
|
2022-03-17 14:13:58 +00:00
|
|
|
flex: 1
|
|
|
|
},
|
|
|
|
|
|
|
|
connectingScreenContent: {
|
|
|
|
alignItems: 'center',
|
|
|
|
flex: 1,
|
|
|
|
flexDirection: 'column',
|
|
|
|
justifyContent: 'center'
|
|
|
|
},
|
|
|
|
|
|
|
|
connectingScreenIndicator: {
|
|
|
|
margin: BoxModel.margin
|
|
|
|
},
|
|
|
|
|
|
|
|
connectingScreenText: {
|
|
|
|
color: TEXT_COLOR
|
|
|
|
}
|
|
|
|
};
|