From 778b2cf96b58e7e2d88320ac819cc6de758133d1 Mon Sep 17 00:00:00 2001 From: Aum Bhatt <125039206+aum-deriv@users.noreply.github.com> Date: Fri, 10 May 2024 14:17:31 +0400 Subject: [PATCH] fix: fix the direction of the arrow in WithdrawalCryptoAmountConverter (#15050) --- .../WithdrawalCryptoAmountConverter.scss | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/packages/wallets/src/features/cashier/modules/WithdrawalCrypto/components/WithdrawalCryptoForm/components/WithdrawalCryptoAmountConverter/WithdrawalCryptoAmountConverter.scss b/packages/wallets/src/features/cashier/modules/WithdrawalCrypto/components/WithdrawalCryptoForm/components/WithdrawalCryptoAmountConverter/WithdrawalCryptoAmountConverter.scss index 9c26976fa0a1..a96bef6ce455 100644 --- a/packages/wallets/src/features/cashier/modules/WithdrawalCrypto/components/WithdrawalCryptoForm/components/WithdrawalCryptoAmountConverter/WithdrawalCryptoAmountConverter.scss +++ b/packages/wallets/src/features/cashier/modules/WithdrawalCrypto/components/WithdrawalCryptoForm/components/WithdrawalCryptoAmountConverter/WithdrawalCryptoAmountConverter.scss @@ -20,20 +20,19 @@ & > svg { transition: rotate 0.2s ease; - rotate: 180deg; @include mobile { - rotate: -90deg; + rotate: 90deg; margin-bottom: 2.2rem; } } &--rtl { & > svg { - rotate: 0deg; + rotate: 180deg; @include mobile { - rotate: 90deg; + rotate: -90deg; } } }