Added top padding in the availableRooms screen in landscape

This commit is contained in:
Yohan Simard 2019-11-09 11:54:43 +01:00
parent 9503c781ca
commit 15107a6adc

View file

@ -198,6 +198,11 @@ export default class WebViewScreen extends React.Component<Props, State> {
elevation: 0, // Fix for android shadow elevation: 0, // Fix for android shadow
}} }}
locked={true} locked={true}
style = {{
paddingTop: this.state.isLandscape ? 20 : 0,
backgroundColor: ThemeManager.getCurrentThemeVariables().brandPrimary
}}
> >
{this.getTabbedWebview()} {this.getTabbedWebview()}
</Tabs>} </Tabs>}