summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
authorOskar <oskar@mullvad.net>2024-08-16 13:43:26 +0200
committerOskar <oskar@mullvad.net>2024-08-21 17:05:50 +0200
commit3415f2e6e60faef6af419b54d4f4b5dd312720d5 (patch)
tree4ae3799b643f0479fc9ea96bc2fa00aee0c50d15 /gui/src
parent1daeff317e07fd2067e3f42d31b01935744fcfc8 (diff)
downloadmullvadvpn-3415f2e6e60faef6af419b54d4f4b5dd312720d5.tar.xz
mullvadvpn-3415f2e6e60faef6af419b54d4f4b5dd312720d5.zip
Use color variable for NotificationBanner background
Diffstat (limited to 'gui/src')
-rw-r--r--gui/src/renderer/components/NotificationBanner.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/src/renderer/components/NotificationBanner.tsx b/gui/src/renderer/components/NotificationBanner.tsx
index 3b66abb204..ad84ad3697 100644
--- a/gui/src/renderer/components/NotificationBanner.tsx
+++ b/gui/src/renderer/components/NotificationBanner.tsx
@@ -133,7 +133,7 @@ const Collapsible = styled.div<ICollapsibleProps>((props) => {
display: 'flex',
flexDirection: 'column',
justifyContent: props.$alignBottom ? 'flex-end' : 'flex-start',
- backgroundColor: 'rgba(25, 38, 56, 0.95)',
+ backgroundColor: colors.darkerBlue,
overflow: 'hidden',
// Using auto as the initial value prevents transition if a notification is visible on mount.
height: props.$height === undefined ? 'auto' : `${props.$height}px`,