refactor(component): replace scoped scss with inline tailwind css

delete unused module title image asset
remove scoped style blocks from all vue single-file components
delete all deprecated scss style directories and files
replace legacy class names with inline tailwind utility classes across affected components
preserve original ui appearance and functionality
This commit is contained in:
DEV_DSW
2026-05-28 15:20:31 +08:00
parent 32d5e12eff
commit 0b64f666c7
10 changed files with 40 additions and 163 deletions

View File

@@ -1,6 +1,6 @@
<template>
<div class="w-full pb-12">
<template v-if="toolCall.picture && toolCall.picture.length > 0">
<div class="w-full pb-[12px]">
<template v-if="toolCall.picture && toolCall.picture.length">
<ModuleTitle :title="图片详情" />
<ImageSwiper :images="toolCall.picture" thumbnailBottom="12px" />
</template>
@@ -24,5 +24,3 @@ const props = defineProps({
},
});
</script>
<style scoped lang="scss"></style>