stylus 语法换成 saas 语法

This commit is contained in:
GeekMaster
2025-08-01 17:32:06 +08:00
parent 068b5ddeef
commit 54f8494b5c
145 changed files with 8445 additions and 8446 deletions

View File

@@ -29,27 +29,27 @@ watch(
)
</script>
<style lang="stylus">
@import '../../assets/iconfont/iconfont.css';
<style lang="scss">
@use '../../assets/iconfont/iconfont.css' as *;
.mobile-home {
.container {
.van-nav-bar {
position fixed
width 100%
position: fixed;
width: 100%;
}
padding 0 10px
padding: 0 10px;
}
}
// 黑色主题
.van-theme-dark body {
background #1c1c1e
background: #1c1c1e;
}
.van-nav-bar {
position fixed
width 100%
position: fixed;
width: 100%;
}
</style>