home to postlist

This commit is contained in:
Michael Zhang 2024-04-04 08:30:07 -05:00
parent ea600b05f7
commit 90f7fa2ee9
2 changed files with 16 additions and 18 deletions

View File

@ -79,8 +79,23 @@ const sortedPosts = sortBy(allPosts, (post) => -post.data.date);
width: 100%;
border-spacing: 6px 16px;
:global(.timestamp) {
font-family: var(--monofont);
color: var(--smaller-text-color);
font-size: 0.75em;
}
:global(.tags) {
gap: 4px;
display: inline-flex;
:global(.tag) {
background-color: inherit;
padding: 0;
}
}
td {
// padding-bottom: 10px;
line-height: 1;
.title {

View File

@ -1,17 +0,0 @@
.home.postListing {
.timestamp {
font-family: var(--monofont);
color: var(--smaller-text-color);
font-size: 0.75em;
}
.tags {
gap: 4px;
display: inline-flex;
.tag {
background-color: inherit;
padding: 0;
}
}
}