We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I am trying to use UIKit and some of the elements have a "-" in the attribute name.
For example to setup the grid I need to say:
When I use the form: (d/div {:class "ukgrid-large uk-child-width-expand@s uk-text-center" :uk-grid ""})
The uk-grid div is being created as the following but missing the "-".
div class="ukgrid-large uk-child-width-expand@s uk-text-center" ukgrid="">
How to resolve this? Thanks.
The text was updated successfully, but these errors were encountered:
This sounds similar to #130
With the latest main branch code, if you wrap uk-grid in quotes instead of passing as a keyword
(d/div {:class "ukgrid-large uk-child-width-expand@s uk-text-center" "uk-grid" ""})
it should fix it
Sorry, something went wrong.
Thank you for your quick reply. Works, all good now!
No branches or pull requests
Hi,
I am trying to use UIKit and some of the elements have a "-" in the attribute name.
For example to setup the grid I need to say:
When I use the form: (d/div {:class "ukgrid-large uk-child-width-expand@s uk-text-center" :uk-grid ""})
The uk-grid div is being created as the following but missing the "-".
div class="ukgrid-large uk-child-width-expand@s uk-text-center" ukgrid="">
How to resolve this? Thanks.
The text was updated successfully, but these errors were encountered: