forked from vergnet/application-amicale
Added top padding in the availableRooms screen in landscape
This commit is contained in:
parent
9503c781ca
commit
15107a6adc
1 changed files with 5 additions and 0 deletions
|
@ -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>}
|
||||||
|
|
Loading…
Reference in a new issue