mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-02 14:23:42 +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
33 lines
468 B
SCSS
33 lines
468 B
SCSS
@import 'common/sass/variables';
|
|
|
|
$pw-max-width: 40rem;
|
|
|
|
.EnterPw {
|
|
&-title {
|
|
margin: $space auto;
|
|
}
|
|
|
|
&-password {
|
|
display: block;
|
|
position: relative;
|
|
max-width: $pw-max-width;
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
|
|
&-label {
|
|
margin-bottom: $space;
|
|
}
|
|
|
|
&-feedback {
|
|
top: 100%;
|
|
text-align: left;
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
|
|
&-submit {
|
|
max-width: $pw-max-width;
|
|
margin: $space auto $space * 3;
|
|
}
|
|
}
|