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
This is about the Bulma CSS framework incompatibility with Alpine.js framework
I'm using Bulma version 1.0.3
My browser is: Chrome 131
I am sure this issue is not a duplicate (or at least i could not find a duplicate)
Description
Steps to Reproduce
Use tabs container element with classes tabs and is-toggle (and optionally is-toggle-rounded)
Iterate children using alpinejs x-for and template
This is because the first child is actually a template element (inspect the demo) and fails the .tabs.is-toggle li:first-child a and .tabs.is-toggle.is-toggle-rounded li:first-child a selectors. Would you consider fixing this? I would suggest using :first-of-type instead of :first-child, or even make a PR if you prefer.
Thank you
The text was updated successfully, but these errors were encountered:
This is about Bulma.
Overview of the problem
This is about the Bulma CSS framework incompatibility with Alpine.js framework
I'm using Bulma version 1.0.3
My browser is: Chrome 131
I am sure this issue is not a duplicate (or at least i could not find a duplicate)
Description
Steps to Reproduce
tabs
andis-toggle
(and optionallyis-toggle-rounded
)Demo
Expected behavior
First tab should have rounded corners
Actual behavior
First tab does not have rounded corners.
This is because the first child is actually a template element (inspect the demo) and fails the
.tabs.is-toggle li:first-child a
and.tabs.is-toggle.is-toggle-rounded li:first-child a
selectors. Would you consider fixing this? I would suggest using:first-of-type
instead of:first-child
, or even make a PR if you prefer.Thank you
The text was updated successfully, but these errors were encountered: