fix: backlinks overflow

This commit is contained in:
saberzero1 2024-09-26 13:08:41 +02:00
parent 15e6672431
commit 61f67ba2b6
No known key found for this signature in database
GPG Key ID: 41AEE99107640F10

View File

@ -2,8 +2,7 @@
.backlinks { .backlinks {
flex-direction: column; flex-direction: column;
@media all and not ($mobile) { /*&:after {
/*&:after {
pointer-events: none; pointer-events: none;
content: ""; content: "";
width: 100%; width: 100%;
@ -16,27 +15,30 @@
background: linear-gradient(transparent 0px, var(--light)); background: linear-gradient(transparent 0px, var(--light));
}*/ }*/
& > h3 { & > h3 {
font-size: 1rem; font-size: 1rem;
margin: 0; margin: 0;
} }
& > ul { & > ul {
list-style: none; list-style: none;
padding: 0; padding: 0;
margin: 0.5rem 0; margin: 0.5rem 0;
& > li { & > li {
& > a { & > a {
background-color: transparent; background-color: transparent;
}
}
}
& > .overflow {
&:after {
display: none;
} }
} }
} }
& > .overflow {
&:after {
display: none;
}
height: auto;
@media all and ($desktop) {
height: 250px;
}
}
} }