请教下这段scss怎么优化
$--color-primary: #0076FB;
$--color-white: #FFFFFF;
$--color-black: #000000;
$--color-success: #52C41A;
$--color-warning: #FAAD14;
$--color-danger: #F5222D;
$--color-info: #CCCCCC;
.text-primary {
color: $--color-primary !important;
}
.text-white {
color: $--color-white !important;
}
.text-black {
color: $--color-black !important;
}
.text-success {
color: $--color-success !important;
}
.text-warning {
color: $--color-warning !important;
}
.text-danger {
color: $--color-danger !important;
}
.text-error {
color: $--color-error !important;
}
.text-info {
color: $--color-info !important;
}
想问下,这段代码怎么能优化下呢,感觉有很多重复的地方,又不知道咋改..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以参考scss的@each