diff options
| author | Emīls Piņķis <emils@mullvad.net> | 2018-04-24 13:19:30 +0100 |
|---|---|---|
| committer | Emīls Piņķis <emils@mullvad.net> | 2018-04-24 13:19:30 +0100 |
| commit | 3c69b0925b0c4b9aee6457d34d86bb59bfdb3f59 (patch) | |
| tree | 134ac970c329eadb40d61baed3f6f725c8740a17 /app/components/HeaderBarPlatformStyles.js | |
| parent | c03640de300efcf5b7ada700a64850dca3a7541e (diff) | |
| parent | d08775aa954c90f5002d255210f70f822a96c52f (diff) | |
| download | mullvadvpn-3c69b0925b0c4b9aee6457d34d86bb59bfdb3f59.tar.xz mullvadvpn-3c69b0925b0c4b9aee6457d34d86bb59bfdb3f59.zip | |
Merge branch 'linux-always-display-window'
Diffstat (limited to 'app/components/HeaderBarPlatformStyles.js')
| -rw-r--r-- | app/components/HeaderBarPlatformStyles.js | 16 |
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', + }, + }) +}; |
