style: update flex alignment classes and clean up UI styles
Replace all deprecated `flex-items-center` utility classes with standard `items-center` across components. Additionally, update font weight classes from `font-900` to `font-bold`, standardize hex color class syntax to use bracket notation, and remove unused SCSS styles from the SharedVisual component.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<!-- 选择数量 -->
|
||||
<div class=" bg-white p-[12px] rounded-[12px] flex flex-items-center mb-[12px]">
|
||||
<div class=" bg-white p-[12px] rounded-[12px] flex items-center mb-[12px]">
|
||||
<div class="flex-1">
|
||||
<div class="text-[16px] font-medium text-black leading-[24px]">选择数量</div>
|
||||
<div class="text-[12px] color-A3A3A3 leading-[16px]">请选择套餐数量</div>
|
||||
@@ -19,7 +19,7 @@
|
||||
<div class=" border-bottom text-[16px] font-medium text-black leading-[24px] p-[12px]">
|
||||
联系方式
|
||||
</div>
|
||||
<div class="flex flex-items-center p-[12px]">
|
||||
<div class="flex items-center p-[12px]">
|
||||
<div class="text-[14px] font-medium text-ink-600 mr-12">联系人姓名</div>
|
||||
<div class="right">
|
||||
<input class=" px-4 py-2 text-[15px] text-black leading-[20px]" v-model.trim="userFormList[0].visitorName"
|
||||
@@ -27,7 +27,7 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="flex flex-items-center p-[12px]">
|
||||
<div class="flex items-center p-[12px]">
|
||||
<div class="text-[14px] font-medium text-ink-600 mr-12">手机号码</div>
|
||||
<div class="right">
|
||||
<input class=" px-4 py-2 text-[15px] text-black leading-[20px]" v-model.trim="userFormList[0].contactPhone"
|
||||
|
||||
Reference in New Issue
Block a user