1
0
mirror of https://gitlab.com/MisterBiggs/brain-quartz.git synced 2025-06-16 17:56:39 +00:00
2025-04-05 11:38:50 -07:00

25 lines
370 B
SCSS

@use "../../styles/variables.scss" as *;
.backlinks {
flex-direction: column;
& > h3 {
font-size: 1rem;
margin: 0;
}
& > ul.overflow {
list-style: none;
padding: 0;
margin: 0.5rem 0;
max-height: calc(100% - 2rem);
overscroll-behavior: contain;
& > li {
& > a {
background-color: transparent;
}
}
}
}