fix(@deaktop/wallet): fixes below issues in sendModal:

1. A dropdown arrow should not be visible in the context of selecting token
2. Unnecessary padding added when expanding balances in the send modal popup

fixes #12254,#12256
This commit is contained in:
Khushboo Mehta 2023-09-28 22:15:30 +02:00 committed by Khushboo-dev-cpp
parent 10197dc83a
commit bcfabd3998
2 changed files with 2 additions and 1 deletions

View File

@ -78,6 +78,7 @@ StatusListItem {
id: expandedItem
StatusListItemTag {
height: 16
leftPadding: 0
title: LocaleUtils.currencyAmountToLocaleString(balance)
titleText.font.pixelSize: 12
closeButtonVisible: false

View File

@ -127,7 +127,7 @@ Item {
Layout.preferredHeight: 16
icon: "chevron-down"
color: Theme.palette.miscColor1
visible: d.isItemSelected
visible: !!root.selectedItem
}
}