mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
badebe017f
* Add UnitInput component * Add CurrencyInput component * Add UserPreferencedCurrencyInput component * Add UserPreferencedCurrencyDisplay component * Add updatePreferences action * Add styles for CurrencyInput, CurrencyDisplay, and UnitInput * Update SettingsTab page with Primary Currency toggle * Refactor currency displays and inputs to use UserPreferenced displays and inputs * Add TokenInput component * Add UserPreferencedTokenInput component * Use TokenInput in the send screen * Fix unit tests * Fix e2e and integration tests * Remove send/CurrencyDisplay component * Replace diamond unicode character with Eth logo. Fix typos
47 lines
722 B
SCSS
47 lines
722 B
SCSS
.confirm-detail-row {
|
|
padding: 14px 0;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
&__label {
|
|
font-size: .75rem;
|
|
font-weight: 500;
|
|
color: $scorpion;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
&__details {
|
|
flex: 1;
|
|
text-align: end;
|
|
min-width: 0;
|
|
}
|
|
|
|
&__primary {
|
|
font-size: 1.5rem;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
&__secondary {
|
|
color: $oslo-gray;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
&__header-text {
|
|
font-size: .75rem;
|
|
text-transform: uppercase;
|
|
margin-bottom: 6px;
|
|
color: $scorpion;
|
|
|
|
&--edit {
|
|
color: $curious-blue;
|
|
cursor: pointer;
|
|
}
|
|
|
|
&--total {
|
|
font-size: .625rem;
|
|
}
|
|
}
|
|
}
|