mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-05-19 06:54:18 +02:00

Some checks are pending
* start work on client side explorer * fix tests * fmt * generic test flag * add prenav hook * add highlight class * make flex more consistent, remove transition * open folders that are prefixes of current path * make mobile look nice * more style fixes
23 lines
292 B
SCSS
23 lines
292 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;
|
|
|
|
& > li {
|
|
& > a {
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
}
|
|
}
|