diff options
| author | Andrej Mihajlov <and@codeispoetry.ru> | 2017-02-22 11:48:49 +0000 |
|---|---|---|
| committer | Andrej Mihajlov <and@codeispoetry.ru> | 2017-02-22 11:48:49 +0000 |
| commit | 0fd7c1337dd522ce0b9c72faa74fcf165414e306 (patch) | |
| tree | 7871d335ef8e9482d7420334c6382da8091b21c0 | |
| parent | fa9a33ef6f6eb6757f84654ce868b76c1bdb8b5f (diff) | |
| download | mullvadvpn-0fd7c1337dd522ce0b9c72faa74fcf165414e306.tar.xz mullvadvpn-0fd7c1337dd522ce0b9c72faa74fcf165414e306.zip | |
Enable CSSBackdropFilter
| -rw-r--r-- | app/components/Connect.css | 1 | ||||
| -rw-r--r-- | app/main.js | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/app/components/Connect.css b/app/components/Connect.css index 857e938e71..8d8b374907 100644 --- a/app/components/Connect.css +++ b/app/components/Connect.css @@ -39,6 +39,7 @@ display: flex; flex-direction: row; align-items: center; + backdrop-filter: blur(2px); } .connect__server-label { diff --git a/app/main.js b/app/main.js index 029ef7a703..5c2cee7fff 100644 --- a/app/main.js +++ b/app/main.js @@ -79,6 +79,9 @@ const createWindow = () => { webPreferences: { // prevents renderer process code from not running when window is hidden backgroundThrottling: false + + // Enable experimental features + blinkFeatures: ['CSSBackdropFilter'].join(',') } }); |
