refactor: remove custom font-weight scss and update class usages
Delete the standalone font-weight.scss utility file, remove its import from the main scss index, and update all existing references to the custom font-{weight} classes to use either built-in semantic font utilities or inline functional font weight classes matching the project's utility-first styling pattern.
This commit is contained in:
@@ -4,14 +4,14 @@
|
||||
:duration="duration" :indicator-dots="false" :vertical="true">
|
||||
<swiper-item v-for="item in bannerList" :key="item.entityName">
|
||||
<view class="swiper-item" @click="clickItem(item)">
|
||||
<text class="text-color font-size-12 font-600">
|
||||
<text class="text-color font-size-12 font-[600]">
|
||||
{{ item.entityName }}
|
||||
</text>
|
||||
<view class="notice-footer">
|
||||
<text class="text-color font-size-10 font-500">
|
||||
<text class="text-color font-size-10 font-[500]">
|
||||
发布时间:{{ item.effectiveStartTime }}
|
||||
</text>
|
||||
<text class="text-color font-size-10 font-500 underline-text">
|
||||
<text class="text-color font-size-10 font-[500] underline-text">
|
||||
详情
|
||||
</text>
|
||||
</view>
|
||||
@@ -23,7 +23,7 @@
|
||||
|
||||
<view v-else-if="props.tipsMessage">
|
||||
<view class="noMessage">
|
||||
<text class="noMessage-text text-color font-size-12 font-600">
|
||||
<text class="noMessage-text text-color font-size-12 font-[600]">
|
||||
{{ props.tipsMessage }}
|
||||
</text>
|
||||
</view>
|
||||
|
||||
Reference in New Issue
Block a user