Merge branch 'main' into dependabot/npm_and_yarn/postcss-8.4.31

This commit is contained in:
Emruz Hossain 2023-10-17 00:02:09 +06:00 committed by GitHub
commit 7bacc0734d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View file

@ -14,6 +14,10 @@ p {
color: get-light-color('text-color');
}
input {
color: get-light-color('text-color');
}
blockquote {
border-left: 4px solid get-light-color('accent-color');
background-color: rgba(get-light-color('accent-color'), 0.05);
@ -78,6 +82,10 @@ html[data-theme='dark'] {
color: get-dark-color('text-color');
}
input {
color: get-dark-color('text-color');
}
blockquote {
border-left: 4px solid get-dark-color('accent-color');
background-color: rgba(get-dark-color('accent-color'), 0.05);

View file

@ -15,7 +15,7 @@
<div class="row" id="recent-post-cards">
{{ range $post := .posts}}
{{ with site.GetPage $post }}
{{ partial "cards/recent-post.html" . }}
{{ partial "cards/post.html" . }}
{{ end }}
{{ end }}
</div>