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, it seems like it's impossible to use framework mixin definitions to extend or override ui-kit capabilities, like:
@mixin hook-button-misc(){ /* * Modifier: `uk-button-warning` */ .uk-button-warning { background-color: $button-warning-background; color: $button-warning-color; } /* Hover */ .uk-button-warning:hover, .uk-button-warning:focus { background-color: $button-warning-hover-background; color: $button-warning-hover-color; } /* Active */ .uk-button-warning:active, .uk-button-warning.uk-active { background-color: $button-warning-active-background; color: $button-warning-active-color; } }
I think due to the fact that uikit-mixins scss gets imported within uikit scss and all the custom mixins get overridden. Can you see that?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
it seems like it's impossible to use framework mixin definitions to extend or override ui-kit capabilities, like:
I think due to the fact that uikit-mixins scss gets imported within uikit scss and all the custom mixins get overridden.
Can you see that?
The text was updated successfully, but these errors were encountered: