feat: modify links style

This commit is contained in:
aka 2024-02-07 23:36:57 +08:00
parent fb655f9c04
commit 44577f65d4

View File

@ -102,3 +102,23 @@
display: none display: none
} }
} }
@media (min-width: 1024px) {
.article-list--compact.links {
display: grid;
grid-template-columns: 1fr 1fr;
background: none;
box-shadow: none;
article {
background: var(--card-background);
border: none;
box-shadow: var(--shadow-l1);
margin-bottom: 8px;
border-radius: 5px;
&:nth-child(odd) {
margin-right: 8px;
}
}
}
}