refactor: theming

This commit is contained in:
Anthony Fu 2022-11-23 10:16:31 +08:00
parent 9a77c7da2a
commit a4d235b6fe
22 changed files with 351 additions and 39 deletions

View file

@ -13,7 +13,7 @@ const createdAt = $computed(() => {
<template>
<div flex flex-col>
<div border="b border">
<div border="b base">
<img h-50 w-full object-cover :src="account.header">
</div>
<div p3 style="margin-top:-3.5rem;" flex flex-col gap-6>

View file

@ -9,12 +9,12 @@ const { paginator } = defineProps<{
<template>
<CommonPaginator
:paginator="paginator"
border="t border"
border="t base"
>
<template #default="{ item }">
<AccountCard
:account="item"
border="b border" py-1
border="b base" py-1
/>
</template>
</CommonPaginator>