diff options
| -rw-r--r-- | app/components/PlatformWindow.js | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/app/components/PlatformWindow.js b/app/components/PlatformWindow.js index e54ce969e0..10b689eb42 100644 --- a/app/components/PlatformWindow.js +++ b/app/components/PlatformWindow.js @@ -2,14 +2,16 @@ import * as React from 'react'; import { Component, View, Styles } from 'reactxp'; -const platformWindowStyle = Styles.createViewStyle({ - WebkitMask: ` - url(./assets/images/app-triangle.svg) 50% 0% no-repeat, - url(./assets/images/app-header-backdrop.svg) no-repeat`, -}); +const styles = { + darwin: Styles.createViewStyle({ + WebkitMask: ` + url(./assets/images/app-triangle.svg) 50% 0% no-repeat, + url(./assets/images/app-header-backdrop.svg) no-repeat`, + }), +}; export default class PlatformWindow extends Component { render() { - return <View style={platformWindowStyle}>{this.props.children}</View>; + return <View style={styles[process.platform]}>{this.props.children}</View>; } } |
