mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-09 10:41:56 +00:00
bdaf40a0ce
* Remove title from account, tighten buttons and subtabs. * Send everything button in input. * Request tx to full width, adjust transaction fee spacing. * Fix token balances button spacing. * Fix address identicon flying offscreen. Tighten up identicon, show border even when theres no identicon. * Add isSelfAddress boolean to AddressField, use it on WalletInfo tab. * Use short amount again. * Unused
40 lines
573 B
SCSS
40 lines
573 B
SCSS
@import 'common/sass/variables';
|
|
@import 'common/sass/mixins';
|
|
|
|
.UnlockHeader {
|
|
position: relative;
|
|
|
|
&-open {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
padding-right: none;
|
|
|
|
&-text {
|
|
padding-right: 8px;
|
|
}
|
|
}
|
|
|
|
&-close {
|
|
@include reset-button;
|
|
position: absolute;
|
|
top: 6px;
|
|
right: 6px;
|
|
margin: 0.5rem 1rem;
|
|
z-index: 1;
|
|
line-height: 24px;
|
|
font-size: 24px;
|
|
transition: opacity 120ms;
|
|
opacity: 0.3;
|
|
|
|
> img {
|
|
height: 26px;
|
|
width: 26px;
|
|
}
|
|
|
|
&:hover {
|
|
opacity: 0.87;
|
|
}
|
|
}
|
|
}
|