From 63bcd189cf29a9a3254db2ba3060b7bd2bf68644 Mon Sep 17 00:00:00 2001 From: inhji Date: Wed, 28 Jun 2023 15:20:39 +0200 Subject: [PATCH] fix form default styles --- lib/chiya_web/components/core_components.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/chiya_web/components/core_components.ex b/lib/chiya_web/components/core_components.ex index aeef9f9..0f97b11 100644 --- a/lib/chiya_web/components/core_components.ex +++ b/lib/chiya_web/components/core_components.ex @@ -247,7 +247,7 @@ defmodule ChiyaWeb.CoreComponents do """ attr :for, :any, required: true, doc: "the datastructure for the form" attr :as, :any, default: nil, doc: "the server side parameter to collect all input under" - attr :class, :string, default: "shadow rounded mt-10 bg-white dark:bg-gray-900" + attr :class, :string, default: "mt-10" attr :rest, :global, include: ~w(autocomplete name rel action enctype method novalidate target multipart),