mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-10 11:05:47 +00:00
9ef1920fe0
* Align footer to bottom * Fix request payment offset padding * Update request payment padding * Add new Input and Dropdown components * Fix offset margins in equiv vals * Update all send tx inputs & dropdowns * Update generate wallet dropdowns * Update inputs & dropdowns for contracts tab * Add inputs & dropdowns for all but swap tab * amend * Fix imports * inputs are invalid when not disabled or readonly * Fix offset refresh button * Add togglable password back to wallet generation * Update swap inputs, textareas, and dropdowns * Update any outstanding inputs * Make UnitDropDown searchable * unitdropdown searchanble if options > 10 * Fix css issues * Reset before setting currentTo
41 lines
593 B
SCSS
41 lines
593 B
SCSS
@import 'common/sass/variables';
|
|
@import 'common/sass/mixins';
|
|
|
|
.Nonce {
|
|
&-label {
|
|
align-items: center;
|
|
margin-bottom: $space-xs;
|
|
&-text {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
&-field {
|
|
position: relative;
|
|
}
|
|
|
|
&-refresh {
|
|
@include reset-button;
|
|
opacity: 0.3;
|
|
transition: opacity 300ms;
|
|
|
|
> img {
|
|
height: 1.4rem;
|
|
}
|
|
&:hover {
|
|
opacity: 0.54;
|
|
}
|
|
&:active {
|
|
transition: opacity 120ms;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
&-spinner,
|
|
&-refresh {
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: 1rem;
|
|
padding: 0.75rem 1rem;
|
|
}
|
|
}
|