What are other solution to use @use in scss for retrieving nested class names?
I know using @import can work, but it is going to be deprecated, so I don't want to use that. Does anyone have any other solution?
Example a nested class:
I want just to use something like
@extend .class-1
once, then I get the .class-1
and all of the included nested class name2 Replies
If you want to
@extend
, you'll have to @use
the file it's coming from first, no way around that.understood! Thanks for the reply @Kevin ❤️