diff options
| -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(',') } }); |
