Tailwind support
What would be the steps to follow to implement tailwind css?
Would be very nice to have!
Hi
I'm not familiar with tailwind beyond the fact that it uses classes as css rules, in this case you will need to change the base element (that is used for all elements) and parse the css attribute of the selected element and extract all tailwind classes and based on that add the proper inputs. https://github.com/givanz/VvvebJs/blob/master/libs/builder/components-common.js#L74-L100
Something similar is done for the bootstrap gridrow component where the class attribute is parsed to extract the column configuration and add the proper column inputs. https://github.com/givanz/VvvebJs/blob/master/libs/builder/components-bootstrap5.js#L916-L991