refactor: replace rounded utility classes and clean up unused scss files
Removed unused text-align.scss, position.scss, and rounded.scss utility files along with their imports from scss/index.scss. Updated all existing uses of the rounded-* utility classes in vue components to use inline border-radius syntax like rounded-[10px] instead.
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
<template>
|
||||
<view class="w-full bg-white border-ff overflow-hidden rounded-20 flex flex-col">
|
||||
<view class="w-full bg-white border-ff overflow-hidden rounded-[20px] flex flex-col">
|
||||
<!-- 占位撑开 -->
|
||||
<view class="w-vw"></view>
|
||||
|
||||
<view class="aigc-photo-card relative rounded-24 overflow-hidden w-full"
|
||||
<view class="aigc-photo-card relative rounded-[24px] overflow-hidden w-full"
|
||||
:class="{ 'is-disabled': disabled, 'is-empty': !videoUrl }" @click="handleAction">
|
||||
<video v-if="videoUrl" :id="videoId" class="aigc-photo-card__video block w-full" :src="videoUrl" :poster="poster"
|
||||
:controls="!disabled" :show-center-play-btn="!disabled" :show-play-btn="!disabled"
|
||||
|
||||
Reference in New Issue
Block a user