From 0017f5de044bce88e292e947b6dad44de68ec546 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/routes/(app)/dashboard/+layout.svelte | 1 + .../src/style/dusk-components/balance.css | 10 +++++---- web-wallet/src/style/dusk/language.css | 1 + 5 files changed, 21 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..5010aa169a 100644 --- a/web-wallet/src/lib/components/Balance/Balance.svelte +++ b/web-wallet/src/lib/components/Balance/Balance.svelte @@ -2,6 +2,7 @@