From b6b4d64c58e5b00d98d45d8398d7493165e2b5c5 Mon Sep 17 00:00:00 2001 From: akshatsinghania Date: Fri, 14 Jun 2024 19:38:51 +0530 Subject: [PATCH] changed font of form magick.css was causing the font clash of the form to the webpage, this change overrides the font set by the css framework --- src/pages/index.astro | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/pages/index.astro b/src/pages/index.astro index 165a88c..52c9437 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -169,4 +169,10 @@ if (Astro.request.method === "POST") { input[type="checkbox"] { margin-right: 0.5rem; } + input::placeholder { + font-family: "Averia Serif Libre", serif; + } + label { + font-family: "Averia Serif Libre", serif; + }