style: standardize tailwind classes and clean unused assets

Standardize Tailwind CSS usage across the codebase: replace legacy shorthand utilities with modern syntax, update color classes to use bracket notation, fix margin/padding units, delete unused CreateServiceOrder SCSS stylesheet and image asset, and resolve minor style inconsistencies.
This commit is contained in:
DEV_DSW
2026-05-29 10:47:36 +08:00
parent 971b4d9cfa
commit 8312273696
40 changed files with 110 additions and 144 deletions

View File

@@ -17,7 +17,7 @@
<span>{{ distance.text }}</span>
</div>
<div class="facility-location-card__location bg-[#f8fafc] rounded-20">
<div class="facility-location-card__location bg-[#f8fafc] rounded-[20px]">
<div class="facility-location-card__location-label flex items-center color-64748B text-[13px] font-bold">
<span class="facility-location-card__location-dot">{{ location.icon }}</span>
<span>{{ location.label }}</span>
@@ -28,7 +28,7 @@
</div>
<div
class="facility-location-card__button flex items-center flex-justify-center bg-0F172A text-white text-[18px] font-bold"
class="facility-location-card__button flex items-center justify-center bg-0F172A text-white text-[18px] font-bold"
:class="{ 'is-disabled': disabled }" @click="handleAction">
<span class="facility-location-card__button-icon">{{ action.icon }}</span>
<span>{{ action.text }}</span>