Better TOC and Lightbox #13

Merged
DrMint merged 10 commits from develop into main 2022-03-18 13:01:41 +00:00
Showing only changes of commit 3a381d51b5 - Show all commits

View File

@ -26,7 +26,7 @@ export default function News(props: NewsProps): JSX.Element {
const contentPanel = (
<ContentPanel width={ContentPanelWidthSizes.large}>
<div className="grid gap-8 items-end grid-cols-2 desktop:grid-cols-[repeat(auto-fill,_minmax(20rem,1fr))]">
<div className="grid gap-8 items-end grid-cols-1 desktop:grid-cols-[repeat(auto-fill,_minmax(20rem,1fr))]">
{posts.map((post) => (
<PostsPreview key={post.id} post={post.attributes} />
))}