mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-12 12:47:14 +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
70 lines
1.1 KiB
SCSS
70 lines
1.1 KiB
SCSS
.settings-tab {
|
|
&__error {
|
|
padding-bottom: 20px;
|
|
text-align: center;
|
|
color: $crimson;
|
|
}
|
|
|
|
&__rpc-save-button {
|
|
align-self: flex-end;
|
|
padding: 5px;
|
|
text-transform: uppercase;
|
|
color: $dusty-gray;
|
|
cursor: pointer;
|
|
}
|
|
|
|
&__rpc-save-button {
|
|
align-self: flex-end;
|
|
padding: 5px;
|
|
text-transform: uppercase;
|
|
color: $dusty-gray;
|
|
cursor: pointer;
|
|
}
|
|
|
|
&__button--red {
|
|
border-color: lighten($monzo, 10%);
|
|
color: $monzo;
|
|
|
|
&:active {
|
|
background: lighten($monzo, 55%);
|
|
border-color: $monzo;
|
|
}
|
|
|
|
&:hover {
|
|
border-color: $monzo;
|
|
}
|
|
}
|
|
|
|
&__button--orange {
|
|
border-color: lighten($ecstasy, 20%);
|
|
color: $ecstasy;
|
|
|
|
&:active {
|
|
background: lighten($ecstasy, 40%);
|
|
border-color: $ecstasy;
|
|
}
|
|
|
|
&:hover {
|
|
border-color: $ecstasy;
|
|
}
|
|
}
|
|
|
|
&__radio-buttons {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
&__radio-button {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&:not(:last-child) {
|
|
margin-right: 16px;
|
|
}
|
|
}
|
|
|
|
&__radio-label {
|
|
padding-left: 4px;
|
|
}
|
|
}
|