You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wiki/client/themes/tyclipso/scss/components/_anchor-button.scss

20 lines
376 B

.v-btn.ty-anchor-button {
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
visibility: hidden;
opacity: 0;
transition: visibility .1s ease, opacity .1s ease;
color: mc('grey', '700');
}
.toc-header:hover .v-btn.ty-anchor-button {
opacity: 1;
visibility: visible;
}
.theme--dark .v-btn.ty-anchor-button {
color: mc('grey', '400');
}