style: replace legacy typography classes with modern utilities
Convert all legacy font-size-*, font-weight-*, and line-height-* CSS utility classes to modern inline utility formats (text-[Xpx], font-{weight}, leading-[Xpx]). Also remove unused GoodsInfo component SCSS file, its associated image asset, and clean up the stale style import in GoodsInfo.vue.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div class="faq-help-card bg-white rounded-24 w-full">
|
||||
<div class="faq-help-card__header flex flex-items-center">
|
||||
<div class="faq-help-card__icon flex flex-items-center flex-justify-center rounded-full font-size-16 font-900">
|
||||
<div class="faq-help-card__icon flex flex-items-center flex-justify-center rounded-full text-[16px] font-900">
|
||||
{{ data.icon }}
|
||||
</div>
|
||||
<div class="faq-help-card__title color-1E293B font-size-20 font-900">
|
||||
@@ -14,7 +14,7 @@
|
||||
<div class="faq-help-card__list">
|
||||
<div v-for="item in questions" :key="item.id || item.text" class="faq-help-card__item flex flex-items-center"
|
||||
:class="{ 'is-disabled': disabled }" @click="handleSelect(item)">
|
||||
<div class="faq-help-card__question color-475569 font-size-18 font-900 ellipsis-1 flex-full">
|
||||
<div class="faq-help-card__question color-475569 text-[18px] font-900 ellipsis-1 flex-full">
|
||||
{{ item.text }}
|
||||
</div>
|
||||
<uni-icons type="right" size="16" color="#CBD5E1"></uni-icons>
|
||||
|
||||
Reference in New Issue
Block a user