refactor: replace border-box with box-border and clean up unused scss
Remove the unused box-sizing.scss stylesheet and its import from the main SCSS index file. Update all Vue component template class references from the custom border-box class to the native box-border utility class to eliminate redundant custom CSS and align with the project's utility class conventions.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<view class="bg-white rounded-12 overflow-hidden mb-12">
|
||||
<view class="flex flex-items-center border-box p-[12px] border-bottom">
|
||||
<view class="flex flex-items-center box-border p-[12px] border-bottom">
|
||||
<view class="font-size-16 font-500 color-000 line-height-24 flex-full">入住信息</view>
|
||||
<view class="right">
|
||||
<Stepper v-model="count" unit="间" />
|
||||
@@ -17,7 +17,7 @@
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="flex flex-items-center border-box pt-[12px] pb-[12px]">
|
||||
<view class="flex flex-items-center box-border pt-[12px] pb-[12px]">
|
||||
<view class="font-size-14 font-500 color-525866 mr-12"> 联系手机 </view>
|
||||
<view class="right">
|
||||
<input class="border-box px-[4px] py-[2px] font-size-15 color-000 line-height-20"
|
||||
|
||||
Reference in New Issue
Block a user