-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
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
Include path for SVG files in Flag icons is incorrect #22
Comments
Same issue for CoreUI Icons PRO. Can you fix it. Please |
Sure, I will check it ASAP |
@mrholek , any update on fixing this (in PRO)? Thanks! |
@jaydiablo @patdec I fixed it in the latest release, can you check if this release is ok? |
@mrholek release 2.0.0-rc.0 isn't accessible from npm registry: |
@mrholek when will be update in npm ? cloning from git is not a suitable option (also spending a lot of disk space) |
This is similar to #20 but for the Flag icons.
The path defined here: https://github.com/coreui/coreui-icons/blob/master/scss/flag/_core.scss#L14 isn't quite right because the
svg
folder is actually one level deeper. This error was emitted when transpiling the SCSS:To fix this, I changed this line:
background-image: url(../svg/flag/#{$coreui-icons-prefix}#{$icon}.svg);
to
background-image: url(../../svg/flag/#{$coreui-icons-prefix}#{$icon}.svg);
The text was updated successfully, but these errors were encountered: