Merge branch 'main' into dependabot/npm_and_yarn/postcss-8.4.31
This commit is contained in:
commit
7bacc0734d
2 changed files with 9 additions and 1 deletions
|
@ -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);
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue