We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32ffc16 commit 00dd14fCopy full SHA for 00dd14f
src/components/BlogPostCard.astro
@@ -89,7 +89,7 @@ const firstCategory = post.data.categories.length
89
{post.data.author}
90
</a>
91
</p>
92
- <div class="flex space-x-1 text-sm text-gray-600">
+ <div class="flex space-x-1 text-sm text-gray-600 dark:text-gray-300">
93
<time datetime={post.data.pubDate}
94
>{formatDate(post.data.pubDate)}</time
95
>
src/styles/global.css
@@ -132,6 +132,10 @@ input[type="radio"]:checked + label {
132
.tab {
133
@apply px-3 py-1 leading-none font-mono font-bold text-sm text-gray-500 hover:text-black;
134
135
+ &:hover {
136
+ @apply dark:text-white;
137
+ }
138
+
139
span {
140
@apply border-dotted border-b border-gray-400;
141
}
0 commit comments