mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-10 02:55:41 +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
26 lines
394 B
SCSS
26 lines
394 B
SCSS
@import 'common/sass/variables';
|
|
|
|
.AddressInput {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
|
|
&-input {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
&-identicon {
|
|
padding-top: .75rem;
|
|
transform: translateX(20%);
|
|
|
|
@media (max-width: $screen-sm) {
|
|
padding-top: 1.5rem;
|
|
|
|
.Identicon {
|
|
width: 3.4rem !important;
|
|
height: 3.4rem !important;
|
|
}
|
|
}
|
|
}
|
|
}
|