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
First of all thank you for such an excellent tool 👍
I am trying to import selected parts of Bootstrap. All imported classes I am looking to prefix (eg with x-).
I run in to the following issue when Bootstrap attempts to extend a selector. I suspect this issue is related to prefixing all classes. Bootstrap is looking to extend a selector that has been already prefixed, therefore no longer available in the original naming.
@import '{
/\.form-control(.*)/ as .x-form-control$1
} from ../../../media/vendor/bootstrap/scss/forms';
@import '{
/\.input-group(.*)/ as .x-input-group$1
} from ../../../media/vendor/bootstrap/scss/input-group';
The above gives me the following error..
".x-input-group-lg > .form-control" failed to @extend ".form-control-lg".
The selector ".form-control-lg" was not found.
Use "@extend .form-control-lg !optional" if the extend should be able to fail.
First of all thank you for such an excellent tool 👍
I am trying to import selected parts of Bootstrap. All imported classes I am looking to prefix (eg with x-).
I run in to the following issue when Bootstrap attempts to extend a selector. I suspect this issue is related to prefixing all classes. Bootstrap is looking to extend a selector that has been already prefixed, therefore no longer available in the original naming.
The above gives me the following error..
@extend ".form-control-lg"
--- https://github.com/twbs/bootstrap/blob/v4-dev/scss/_input-group.scss#L123Is prefixing all classes in Bootstrap beyond what the importer is currently capable of?
The text was updated successfully, but these errors were encountered: