refactor: Remove max-w-fit from Rows component

This commit is contained in:
Prad Nukala 2024-12-10 13:54:14 -05:00 committed by Prad Nukala (aider)
parent fb234ed339
commit 9d3264256a

View File

@ -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% // Rows is a component that renders a flex container with a gap of 2 and a max width of 100%
templ Rows() { templ Rows() {
<div class="flex flex-row w-full gap-2 md:gap-4 max-w-fit"> <div class="flex flex-row w-full gap-2 md:gap-4">
{ children... } { children... }
</div> </div>
} }