Open jaydiablo opened 4 years ago
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: https://registry.npmjs.org/@coreui/icons-pro/
@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);