From 3f98be09d23bf664748bce76292adfd530b1ed3e Mon Sep 17 00:00:00 2001 From: Thilo Billerbeck Date: Wed, 15 Nov 2023 02:37:46 +0100 Subject: [PATCH] fixed broken mobile input alnignment --- src/components/ui/Input.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/Input.astro b/src/components/ui/Input.astro index 62b0f6f090..53d1bce52f 100644 --- a/src/components/ui/Input.astro +++ b/src/components/ui/Input.astro @@ -32,7 +32,7 @@ const { color = "nixdarkblue", size = "lg", icon = null, placeholder = "", name "text-nixdarkblue placeholder-grey-200": color === "nixdarkblue", "border-white text-white placeholder-nixlighterblue bg-transparent": color === "white", "py-3 pl-4 md:pl-11 pr-4 md:w-96 border-2": size === "lg", - "px-10 pl-11 py-2 w-full border-1": size === "sm-full" + "px-4 md:px-10 md:pl-11 py-2 w-full border-1": size === "sm-full" }]} name={name} placeholder={placeholder}