41 lines
609 B
SCSS
41 lines
609 B
SCSS
@import 'common/sass/variables';
|
|
@import 'common/sass/mixins';
|
|
|
|
.UnlockHeader {
|
|
position: relative;
|
|
|
|
&-open {
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 0;
|
|
padding-right: none;
|
|
transform: translateY(-50%);
|
|
|
|
&-text {
|
|
padding-right: 8px;
|
|
}
|
|
}
|
|
|
|
&-close {
|
|
@include reset-button;
|
|
position: absolute;
|
|
top: 56px;
|
|
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;
|
|
}
|
|
}
|
|
}
|