mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-07 16:54:04 +00:00
* 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
37 lines
672 B
SCSS
37 lines
672 B
SCSS
@import 'common/sass/variables';
|
|
|
|
.SubTabs {
|
|
margin-top: $space-xs;
|
|
|
|
&-tabs {
|
|
display: inline-block;
|
|
white-space: nowrap;
|
|
|
|
&-link {
|
|
display: inline-block;
|
|
padding: 8px;
|
|
font-size: $font-size-base;
|
|
min-width: 80px;
|
|
text-align: center;
|
|
font-weight: 300;
|
|
color: $ether-navy;
|
|
border-bottom: 2px solid $gray-lighter;
|
|
transition-duration: 100ms;
|
|
|
|
&.is-active {
|
|
border-bottom-color: $brand-primary;
|
|
}
|
|
|
|
&.is-disabled {
|
|
color: $gray-light;
|
|
pointer-events: none;
|
|
text-decoration: line-through;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-select {
|
|
margin-bottom: $space-md;
|
|
}
|
|
}
|