* fix(style): fix toc overflow & scrolling overflow * fix(style): fix explorer scrolling overflow * fix(style): fix backlinks overflow & scrolling overflow * fix(style): resolve popover overflow issue causing incomplete display * chore: rename function to enhance readability * fix(popover): make the backlink's id unique & use translate() instead of translateY()
24 lines
344 B
SCSS
24 lines
344 B
SCSS
@use "../../styles/variables.scss" as *;
|
|
|
|
.backlinks {
|
|
flex-direction: column;
|
|
|
|
& > h3 {
|
|
font-size: 1rem;
|
|
margin: 0;
|
|
}
|
|
|
|
& > ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0.5rem 0;
|
|
height: 6rem;
|
|
overscroll-behavior: contain;
|
|
|
|
& > li {
|
|
& > a {
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
}
|
|
}
|