I am getting this error in my angular project.
@include for-desktop-up {...." No mixin named for-desktop-up"
My code in the styles.scss is
@mixin for-desktop-up {
@media (min-width: 1024px) { @content; }
}
My code in a stylesheet of a component is
@include for-desktop-up {
//some scss code
}
What am I doing wrong or what is going on?
@import 'styles'
into the components scss file – Karlykarlyn