mirror of https://github.com/requarks/wiki
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.
20 lines
358 B
20 lines
358 B
.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 .ty-anchor-button {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.theme--dark .ty-anchor-button {
|
|
color: mc('grey', '400');
|
|
}
|