refactor: migrate legacy color classes to inline tailwind text utilities
Replace all usages of legacy `.color-*` and `.text-color-*` SCSS utility classes with inline Tailwind `text-[#hexcode]` arbitrary value classes. Remove the deprecated `src/static/scss/colors.scss` file, and fix minor formatting/indentation issues across multiple component files.
This commit is contained in:
@@ -9,10 +9,10 @@
|
||||
<image class="card-img flex-shrink-0 rounded-14" :src="createSvgIndex(index)" />
|
||||
|
||||
<view class="min-width-0 flex flex-col flex-full pl-[8px] py-[4px]">
|
||||
<view class="w-full font-size-12 font-600 color-171717 ellipsis-1">
|
||||
<view class="w-full font-size-12 font-600 text-[#171717] ellipsis-1">
|
||||
{{ item.title }}
|
||||
</view>
|
||||
<view class="w-full font-size-9 color-94A3B8 ellipsis-1">
|
||||
<view class="w-full font-size-9 text-[#94a3b8] ellipsis-1">
|
||||
{{ item.subTitle }}
|
||||
</view>
|
||||
</view>
|
||||
|
||||
Reference in New Issue
Block a user