summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md1
-rw-r--r--gui/packages/desktop/src/renderer/components/BlockingInternetBanner.js2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4ee8434453..ce15a42755 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -38,6 +38,7 @@ Line wrap the file at 100 chars. Th
will wait until it tries to reconnect again in the case of a broken TCP connection.
- Increase timeout parameter to OpenVPN from 15 to 20 seconds. Should make active VPN tunnels drop
less frequent when on unstable networks.
+- Reduce the transparency of "blocking internet" banner to increase the text readability.
#### Linux
- Moved CLI binary to `/usr/bin/` as to have the CLI binary in the user's `$PATH` by default.
diff --git a/gui/packages/desktop/src/renderer/components/BlockingInternetBanner.js b/gui/packages/desktop/src/renderer/components/BlockingInternetBanner.js
index d044a7ace6..78c2b57611 100644
--- a/gui/packages/desktop/src/renderer/components/BlockingInternetBanner.js
+++ b/gui/packages/desktop/src/renderer/components/BlockingInternetBanner.js
@@ -7,7 +7,7 @@ import { colors } from '../../config';
const styles = {
container: Styles.createViewStyle({
flexDirection: 'row',
- backgroundColor: 'rgba(0, 0, 0, 0.5)',
+ backgroundColor: 'rgba(25, 38, 56, 0.95)',
paddingTop: 8,
paddingLeft: 20,
paddingRight: 20,