💄 Change typography again...

This commit is contained in:
2025-08-30 18:39:59 -04:00
parent eef297d4a1
commit 26d9288aa4
5 changed files with 12 additions and 18 deletions
+5 -1
View File
@@ -18,7 +18,7 @@ const { title, date, slug } = Astro.props;
</h2>
<div>
<CalendarIcon class="calendar-icon" width={24} height={24} />
{format(add(new Date(date), { hours: 6 }), 'MMM do, y')}
<strong>{format(add(new Date(date), { hours: 6 }), 'MMM do, y')}</strong>
</div>
</div>
@@ -26,4 +26,8 @@ const { title, date, slug } = Astro.props;
.calendar-icon {
transform: translateY(0.3rem);
}
strong {
font-weight: bold;
}
</style>