Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- [Fixed floating data field decode dropdown](https://github.com/multiversx/mx-sdk-dapp/pull/1390)
- [Updated address validation](https://github.com/multiversx/mx-sdk-dapp/pull/1389)
- [Added conditional price radios visibility per radio button](https://github.com/multiversx/mx-sdk-dapp/pull/1388)

Expand Down
13 changes: 7 additions & 6 deletions src/UI/TransactionData/TransactionDataStyles.scss
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
.transactionData {
.transaction-data {
display: flex;
flex-direction: column;
line-height: 1;
gap: 8px;

.transactionDataLabel {
.transaction-data-label {
align-items: center;
color: #a3a3a3;
display: flex;
position: relative;
justify-content: space-between;
}

.transactionDataValueWrapper {
.transaction-data-value-wrapper {
border-radius: 8px;
border: 1px solid #262626;
padding: 4px;

.transactionDataValue {
.transaction-data-value {
min-height: 60px;
line-height: 1.25;
max-height: 60px;
Expand Down Expand Up @@ -64,11 +65,11 @@
background-color: transparent;
}

.transactionDataValueText {
.transaction-data-value-text {
flex: 1;
}

.transactionDataValueCopy {
.transaction-data-value-copy {
position: sticky;
min-width: 1rem;
max-width: 1rem;
Expand Down