chore: switch to calver

This commit is contained in:
2024-10-31 13:46:41 +07:00
parent c201b5816c
commit bbc052eebc
5 changed files with 9 additions and 9 deletions

View File

@@ -51,7 +51,7 @@ function Screen() {
data?.pages
.flat()
.filter(
(item) => item.tags.filter((tag) => tag[0] === "p")?.length > 0,
(item) => item.tags.filter((tag) => tag[0] === "t")?.length > 0,
),
refetchOnWindowFocus: false,
});
@@ -68,7 +68,7 @@ function Screen() {
return (
<div
key={item.id}
className="group flex flex-col rounded-xl overflow-hidden bg-white dark:bg-neutral-800/50 shadow-lg shadow-primary dark:ring-1 dark:ring-neutral-800"
className="mb-3 group flex flex-col rounded-xl overflow-hidden bg-white dark:bg-neutral-800/50 shadow-lg shadow-primary dark:ring-1 dark:ring-neutral-800"
>
<div className="px-2 pt-2">
<ScrollArea.Root

View File

@@ -191,9 +191,9 @@ function Newsfeeds() {
label: "discover_newsfeeds",
})
}
className="h-12 px-3 flex items-center justify-between bg-neutral-200/50 rounded-xl text-blue-600 dark:text-blue-400"
className="h-9 w-full px-3 flex items-center justify-between bg-neutral-200/50 hover:bg-neutral-200 rounded-lg dark:bg-neutral-800/50 dark:hover:bg-neutral-800"
>
<span className="text-sm font-medium">Discover newsfeeds</span>
<span className="text-xs font-medium">Discover newsfeeds</span>
<ArrowRight className="size-4" weight="bold" />
</button>
</div>
@@ -345,9 +345,9 @@ function Interests() {
label: "discover_interests",
})
}
className="h-12 px-3 flex items-center justify-between bg-neutral-200/50 rounded-xl text-blue-600 dark:text-blue-400"
className="h-9 w-full px-3 flex items-center justify-between bg-neutral-200/50 hover:bg-neutral-200 rounded-lg dark:bg-neutral-800/50 dark:hover:bg-neutral-800"
>
<span className="text-sm font-medium">Discover interests</span>
<span className="text-xs font-medium">Discover interests</span>
<ArrowRight className="size-4" weight="bold" />
</button>
</div>