feat: 替换sass版本,定义全局样式,实现简单的页面布局操作,比如颜色、边距、圆角等

This commit is contained in:
duanshuwen
2025-10-06 13:13:16 +08:00
parent e0f0e90635
commit c8e51e4975
108 changed files with 366 additions and 517 deletions

View File

@@ -48,5 +48,5 @@ const orderStatusText = computed(() => {
</script>
<style scoped lang="scss">
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -25,11 +25,11 @@
.order-title {
font-size: 16px;
color: #333;
color: $uni-text-color;
}
.order-status {
font-size: 14px;
font-size: $uni-font-size-base;
padding: 5px 10px;
border-radius: 15px;
}
@@ -70,12 +70,12 @@
}
.detail-label {
font-size: 14px;
font-size: $uni-font-size-base;
color: #666;
margin-right: 10px;
}
.detail-value {
font-size: 14px;
color: #333;
font-size: $uni-font-size-base;
color: $uni-text-color;
}