mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 02:58:09 +01:00
803576c7d7
* transaction details - update ui * update lint scss * update sender & recipient name ui
54 lines
836 B
SCSS
54 lines
836 B
SCSS
.transaction-list-item-details {
|
|
&__header {
|
|
margin: 8px 16px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
&__header-buttons {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
& &__header-button {
|
|
&-rounded-button {
|
|
@include H8;
|
|
|
|
padding: 0 16px;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
&-tooltip-container {
|
|
display: flex !important;
|
|
height: 100%;
|
|
}
|
|
|
|
&:not(:last-child) {
|
|
margin-right: 8px;
|
|
}
|
|
}
|
|
|
|
&__sender-to-recipient-container {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
&__cards-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 8px 16px;
|
|
}
|
|
|
|
&__transaction-breakdown {
|
|
flex: 1;
|
|
margin-right: 8px;
|
|
min-width: 0;
|
|
margin: 0 0 8px 0;
|
|
}
|
|
|
|
&__transaction-activity-log {
|
|
flex: 2;
|
|
min-width: 0;
|
|
}
|
|
}
|