From 9b19fc9035bf722fafb3942ae2b93bc8b80af01b Mon Sep 17 00:00:00 2001 From: Kieran Hall Date: Sat, 31 Aug 2024 18:37:32 +0200 Subject: [PATCH] web-wallet: Add UsageIndicator to Balance component Resolves #2234 --- .../lib/components/Allocate/Allocate.svelte | 2 +- .../src/lib/components/Balance/Balance.svelte | 22 ++++++++++--------- .../src/style/dusk-components/balance.css | 10 +++++---- web-wallet/src/style/dusk/language.css | 1 + 4 files changed, 20 insertions(+), 15 deletions(-) diff --git a/web-wallet/src/lib/components/Allocate/Allocate.svelte b/web-wallet/src/lib/components/Allocate/Allocate.svelte index e7714c5d07..53af14e372 100644 --- a/web-wallet/src/lib/components/Allocate/Allocate.svelte +++ b/web-wallet/src/lib/components/Allocate/Allocate.svelte @@ -314,7 +314,7 @@ flex-direction: column; justify-content: center; align-items: flex-start; - gap: var(--gap-medium); + gap: var(--medium-gap); align-self: stretch; border-radius: var(--fieldset-border-radius); diff --git a/web-wallet/src/lib/components/Balance/Balance.svelte b/web-wallet/src/lib/components/Balance/Balance.svelte index bfc78777dc..03bce1e6c8 100644 --- a/web-wallet/src/lib/components/Balance/Balance.svelte +++ b/web-wallet/src/lib/components/Balance/Balance.svelte @@ -2,6 +2,7 @@