style: remove redundant box-border utility classes

Remove the unnecessary box-border CSS class from component template class lists across the codebase, cleaning up styling without altering any component functionality.
This commit is contained in:
duanshuwen
2026-07-24 16:50:53 +08:00
parent cb7054cd90
commit e174e3b726
45 changed files with 75 additions and 80 deletions

View File

@@ -1,8 +1,8 @@
<template>
<view class="container w-full box-border border-ff overflow-hidden rounded-24 flex flex-col">
<view class="container w-full border-ff overflow-hidden rounded-24 flex flex-col">
<!-- 占位撑开 -->
<view class="w-vw"></view>
<view class="flex flex-col m-4 box-border rounded-24">
<view class="flex flex-col m-4 rounded-24">
<slot name="content"></slot>
</view>
</view>