django-crispy-forms / crispy-tailwind

A Tailwind template pack for django-crispy-forms
MIT License
356 stars 57 forks source link

Fixed Column and Row layout #32

Closed smithdc1 closed 4 years ago

smithdc1 commented 4 years ago

This layout now renders the image below. Previously I'd got my rows and columns mixed up. 🙈

            Row(
                Column(Field("first_name", wrapper_class="px-2"), Field("last_name", wrapper_class="px-2"),),
                Column("email"),
            )

image