From 9d3264256a01203f63cf1bb63fce6e57b3541734 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Tue, 10 Dec 2024 13:54:14 -0500 Subject: [PATCH] refactor: Remove max-w-fit from Rows component --- pkg/common/styles/layout/container.templ | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/common/styles/layout/container.templ b/pkg/common/styles/layout/container.templ index 68d7efa8d..eabf3394a 100644 --- a/pkg/common/styles/layout/container.templ +++ b/pkg/common/styles/layout/container.templ @@ -21,7 +21,7 @@ templ Container() { // Rows is a component that renders a flex container with a gap of 2 and a max width of 100% templ Rows() { -
+
{ children... }
}