Mixins may not be defined
Mixins may not be defined within control directives or other mixins.
style.css
@import 'theme.scss';
html,body,md-sidenav-container, .site{
width: 100%;
height: 100%;
margin: 0;
}
.site{
display: flex;
flex-direction: column;
}
main{
flex: 1;
}
.fill-remaining-space {
flex:1 1 auto;
}
.full-width{
width: 100%
}
theme.scss
@import '~@angular/material/theming';
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我也遇到这个了!导入了scss文件就不行了,是不是不支持这种格式啊?
我也遇到了,谁可以告诉一下怎么处理啊?