From c4f358489b7b06fc81f72971033896c7ee0f8ccb Mon Sep 17 00:00:00 2001 From: Sat Naing Date: Wed, 14 Sep 2022 22:11:09 +0630 Subject: [PATCH 1/8] Add border fill color --- tailwind.config.cjs | 1 + 1 file changed, 1 insertion(+) diff --git a/tailwind.config.cjs b/tailwind.config.cjs index f02abda..9b46d18 100644 --- a/tailwind.config.cjs +++ b/tailwind.config.cjs @@ -37,6 +37,7 @@ module.exports = { borderColor: { skin: { line: withOpacity("--color-border"), + fill: withOpacity("--color-text-base"), }, }, fill: { From 4632f5265504389aef36b996db23750de3eac6aa Mon Sep 17 00:00:00 2001 From: Sat Naing Date: Wed, 14 Sep 2022 22:11:56 +0630 Subject: [PATCH 2/8] Add new search link in header --- src/components/Header.astro | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/src/components/Header.astro b/src/components/Header.astro index 3d38efc..58c0413 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -1,8 +1,9 @@ --- import Hr from "./Hr.astro"; +import LinkButton from "./LinkButton.astro"; export interface Props { - activeNav?: "posts" | "tags" | "about"; + activeNav?: "posts" | "tags" | "about" | "search"; } const { activeNav } = Astro.props; @@ -38,13 +39,19 @@ const { activeNav } = Astro.props;
- + +