Skip to content

Commit

Permalink
fix: fix the direction of the arrow in WithdrawalCryptoAmountConverter (
Browse files Browse the repository at this point in the history
  • Loading branch information
aum-deriv authored and vinu-deriv committed May 28, 2024
1 parent 0ea2773 commit 778b2cf
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
}
Expand Down

0 comments on commit 778b2cf

Please sign in to comment.