MyCrypto/common/components/ui/UnlockHeader.scss
William O'Beirne bdaf40a0ce Send Form Style Adjustments (#1368)
* 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
2018-03-22 13:30:51 -05:00

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;
}
}
}