css
Sass: @import deprecated, use @use/@forward
(Sass|sass|SCSS).*@import.*deprecated|@import.*will be removed
Fixes
- 1.Replace @import with @use for modules
- 2.Use @forward for re-exporting
- 3.Namespace with @use 'file' as name
sassdeprecation@use
Related Errors
css3 fixes
Container queries not supported
@container.*not.*supported|container-type.*unknown
- •Add container-type: inline-size to parent
- •Check browser version supports container queries
css3 fixes
Container query: Invalid container name
container-name.*must be.*ident
- •Use valid CSS identifier for container-name
- •Don't use CSS keywords as container names
css3 fixes
Container query: No matching container ancestor
@container.*no.*ancestor.*container
- •Add container-type to an ancestor element
- •Check container-name matches query