dependabot[bot]
2025-11-06 45d2ef869061099f7f1dca739bedfc1daf40eb76
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
@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;
      }
    }
  }
}