From 95ba8dbe80f5c3f4a0b68fa8f1aa60b5f4dee9a3 Mon Sep 17 00:00:00 2001 From: LowKey Date: Wed, 18 Sep 2024 10:20:06 +0800 Subject: [PATCH] fix-gemwallet_image fix broken image link for gemwallet --- static/img/wallets/lightmode/gem.svg | 25 +++++++++++++++++++++++++ styles/_pages.scss | 2 +- styles/light/_light-theme.scss | 4 ++++ 3 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 static/img/wallets/lightmode/gem.svg diff --git a/static/img/wallets/lightmode/gem.svg b/static/img/wallets/lightmode/gem.svg new file mode 100644 index 0000000000..31e92f93eb --- /dev/null +++ b/static/img/wallets/lightmode/gem.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/styles/_pages.scss b/styles/_pages.scss index 3fdfff00d4..2aae63462a 100644 --- a/styles/_pages.scss +++ b/styles/_pages.scss @@ -121,7 +121,7 @@ } #wallets { - @each $wallet in "ledger", "secalot", "trezor", "xumm", "trust", "gatehub", "towo", "keystone", "dcent", "coin" { + @each $wallet in "ledger", "secalot", "trezor", "xumm", "trust", "gatehub", "towo", "keystone", "dcent", "coin", "gem" { #wallet-#{$wallet} { content: url("../img/wallets/#{$wallet}.svg"); } diff --git a/styles/light/_light-theme.scss b/styles/light/_light-theme.scss index f617eb57ab..243f2880cc 100644 --- a/styles/light/_light-theme.scss +++ b/styles/light/_light-theme.scss @@ -565,6 +565,10 @@ pre code, pre { #wallet-coin { content: url("../img/wallets/lightmode/coin.svg"); } + + #wallet-gem { + content: url("../img/wallets/lightmode/gem.svg"); + } }