-
In the migration guide, It is mentioned I am using Primeflex for the layout of my forms and also some other things as well so this comes as a blow, It's nice that there's a utility available to convert most of the cases but from the above, I was relying on formgrid, col, field classes. Can anybody suggest what flexbox utilities can replace this or do I have to create a flexbox utility classes that replicate the same behavior and replace all these classes (painful)? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@JIBIN-P I would simply use TailwindCSS instead of those classes when possible. For example, instead of That's what the docs say, basically:
To make quicker the migration, you can "find and replace" these classes with something from tailwind. |
Beta Was this translation helpful? Give feedback.
@JIBIN-P I would simply use TailwindCSS instead of those classes when possible. For example, instead of
formgrid
andcol
I would usegrid
: withcol-span-x
Instead of
formgroup-inline
I would use:flex flex-row
.That's what the docs say, basically:
To make quicker the migration, you can "find and replace" these classes with something from tailwind.
Recently, I have migrated a project from primeflex to tailwindcss, and it was not that much problematic. I didn't use the migration tool.