From 5d4e15f0468da4712a907dfbd1b250a95ca786cc Mon Sep 17 00:00:00 2001 From: Usame Algan Date: Mon, 23 Oct 2023 10:16:29 +0200 Subject: [PATCH] fix: Tweak css for dark mode --- src/components/common/WalletInfo/styles.module.css | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/components/common/WalletInfo/styles.module.css b/src/components/common/WalletInfo/styles.module.css index eb603da552..430fdde97c 100644 --- a/src/components/common/WalletInfo/styles.module.css +++ b/src/components/common/WalletInfo/styles.module.css @@ -14,16 +14,14 @@ .walletIcon { position: absolute; display: flex; - -webkit-box-pack: center; justify-content: center; - -webkit-box-align: center; align-items: center; bottom: -4px; right: -4px; border-radius: 50%; - outline: rgb(255, 255, 255) solid 2px; + outline: var(--color-background-paper) solid 2px; outline-offset: -0.1px; - background-color: rgb(255, 255, 255); + background-color: var(--color-background-paper); overflow: hidden; }