summaryrefslogtreecommitdiffhomepage
path: root/app/components/HeaderBarPlatformStyles.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/components/HeaderBarPlatformStyles.js')
-rw-r--r--app/components/HeaderBarPlatformStyles.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/components/HeaderBarPlatformStyles.js b/app/components/HeaderBarPlatformStyles.js
new file mode 100644
index 0000000000..241bdb1a60
--- /dev/null
+++ b/app/components/HeaderBarPlatformStyles.js
@@ -0,0 +1,16 @@
+// @flow
+import { createViewStyles } from '../lib/styles';
+
+export default {
+ ...createViewStyles({
+ darwin: {
+ paddingTop: 24,
+ },
+ linux: {
+ WebkitAppRegion: 'drag',
+ },
+ settings_icon: {
+ WebkitAppRegion: 'no-drag',
+ },
+ })
+};