MyCrypto/common/components/ui/UnlockHeader.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;
}
}
}