chore: Progress sync for the night
All checks were successful
Deploy Blog to Folder / deploy (push) Successful in 4s

This commit is contained in:
2025-08-21 01:08:50 -04:00
parent 32bff9eaf9
commit 4195aa8d8f
14 changed files with 80 additions and 21 deletions

25
public/css/posts.css Normal file
View File

@ -0,0 +1,25 @@
.mb-2 {
margin-bottom: 2rem;
}
.posts {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 1fr;
grid-column-gap: 2rem;
grid-row-gap: 2rem;
}
.posts > div {
width: 100%;
}
.post-card > img {
width: 100%;
object-fit: cover;
object-position: center;
}
@media (min-width: 992px) {
.posts {
grid-template-columns: repeat(2, 1fr);
}
}