12 lines
184 B
SCSS
12 lines
184 B
SCSS
|
@import './secret-button/index';
|
||
|
.type-reveal {
|
||
|
@extend %secret-button;
|
||
|
}
|
||
|
%secret-button {
|
||
|
visibility: hidden;
|
||
|
@extend %with-eye;
|
||
|
}
|
||
|
%secret-button span {
|
||
|
position: absolute;
|
||
|
}
|