我需要覆盖 ValoTheme 的现有 css,我在 mytheme.scss 中添加了新的 css 规则,我编译了主题,并运行了应用程序,但它仍然没有在 UI 上更新。
@mixin mytheme {
@include valo;
// Insert your own theme rules here
.v-widget {
box-sizing: border-box;
vertical-align: top;
text-align: right;
}
.v-slot, .v-spacing {
display: -webkit-inline-box;
white-space: nowrap;
vertical-align: top;
}
}
我试图清理和刷新项目。如何通过覆盖 valoTheme 的现有 css 来更新用户界面
肥皂起泡泡
相关分类