From bd2181eaca86afbfc6a2093ea0d5e6865d2f7860 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernat=20Borr=C3=A0s=20Civil?= <70479573+BernatBC@users.noreply.github.com> Date: Sun, 15 Oct 2023 13:41:39 +0300 Subject: [PATCH 1/2] Fix featured post section after update (#807) --- layouts/partials/sections/featured-posts.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/sections/featured-posts.html b/layouts/partials/sections/featured-posts.html index c5e5404..4618512 100644 --- a/layouts/partials/sections/featured-posts.html +++ b/layouts/partials/sections/featured-posts.html @@ -15,7 +15,7 @@
{{ range $post := .posts}} {{ with site.GetPage $post }} - {{ partial "cards/recent-post.html" . }} + {{ partial "cards/post.html" . }} {{ end }} {{ end }}
From a917e1e3f744f2c0745097217f052d3dacc0f768 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernat=20Borr=C3=A0s=20Civil?= <70479573+BernatBC@users.noreply.github.com> Date: Mon, 16 Oct 2023 08:01:50 +0300 Subject: [PATCH 2/2] Add input color (#812) --- assets/styles/components/texts.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/assets/styles/components/texts.scss b/assets/styles/components/texts.scss index 9f2ba88..17734ac 100644 --- a/assets/styles/components/texts.scss +++ b/assets/styles/components/texts.scss @@ -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);