feat: 调整组件样式,优化图标和布局的尺寸,更新无限加载组件的刷新方法
Some checks failed
/ playwright (push) Failing after 0s
/ depcheck (push) Failing after 3s
/ build-and-deploy-to-vercel (push) Failing after 10s

This commit is contained in:
严浩
2024-12-08 18:00:21 +08:00
parent 1685a34bb2
commit f314b9c023
4 changed files with 14 additions and 14 deletions

View File

@ -3,7 +3,7 @@
</script>
<template>
<div b="1px solid pink" mt-8 text-16 p-8 space-y-8>
<div b="1px solid pink" mt-2 text-4 p-2 space-y-2>
<!-- <div b="1px solid pink">
<div>@iconify-json/carbon/icons.json</div>
<div i-carbon-face-cool text-orange />
@ -11,7 +11,7 @@
<div b="1px solid pink">
<div>Icons({ autoInstall: true })</div>
<icon-carbon-face-cool class="text-yellow" w-32 h-32 />
<icon-carbon-face-cool class="text-yellow" w-8 h-8 />
</div>
<!-- <div b="1px solid pink">
@ -21,8 +21,8 @@
<div b="1px solid pink">
<div>pacman.svg</div>
<icon-svg:pacman text-blue w-48 h-48 />
<some-icon text-cyan w-48 h-48 />
<icon-svg:pacman text-blue w-12 h-12 />
<some-icon text-cyan w-12 h-12 />
</div>
</div>
</template>

View File

@ -34,7 +34,7 @@ defineExpose({
refresh: () => {
currentPage = 0;
state.value = '';
load('refresh');
return load('refresh');
},
});