You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See this fiddle for example (i forked it from somewhere else and just adapted the max-height and overflow style attribute of the div container of the form): https://jsfiddle.net/3fg4o9dv/1/
This is due to the fact that the :after that renders the star is positioned absolute
The text was updated successfully, but these errors were encountered:
However, I can't figure out how to test this locally? I make the change - and webpack dev will recompile - but the dev examples don't seem to include vfg.css - which doesn't get compiled by npm run dev anyway?
When I add this css file to the index.html: https://unpkg.com/[email protected]/dist/vfg.css, it loads it, but I think this change: b5d58ac broke the css; this is a separate issue, but it looks like formGenerator line 359 needs to change from this:
@dflock
You can test css in dev mode because in this case the css is not extracted, it is in the bundle. So no need to add css file to html.
The "Grouping" feature breaks the CSS selector fieldset.vue-form-generator because the layout changed (wrapped with a div) and now the div has vue-form-generator class. I removed the absolute style and remove the fieldset from CSS selector. These are fixed this issue, but I don't like that we wrapped the layout with a new field. :(
Thanks - makes sense now. The fact that I couldn't see the vfg.css file - combined with the fieldset.vue-form-generator selector coincidentally being broken, meant that I couldn't see the styles being applied from the bundle either - which is what confused me, sorry!
See this fiddle for example (i forked it from somewhere else and just adapted the max-height and overflow style attribute of the div container of the form):
https://jsfiddle.net/3fg4o9dv/1/
This is due to the fact that the :after that renders the star is positioned absolute

The text was updated successfully, but these errors were encountered: