Mod for bringing back the legacy article list

This commit is contained in:
daudix
2024-10-14 05:43:18 +03:00
parent 6607a6e3b6
commit ee1e1a1997
3 changed files with 49 additions and 1 deletions

View File

@ -0,0 +1,39 @@
#article-list {
gap: 2rem;
article {
position: relative;
transition: none;
box-shadow: none;
border-radius: 0;
background: none;
padding: 0;
overflow: visible;
&:active {
transform: none;
}
& > a {
border-radius: 0;
}
&.draft,
&.archive,
&.featured,
&.hot,
&.poor {
background-color: transparent;
&::before {
display: none;
}
}
.details {
margin-block-start: 0;
border-block-start: none;
padding-block-start: 0;
}
}
}