UPDATE: Added more categories to database and updated categories page

This commit is contained in:
JustIceO7
2025-02-20 00:08:13 +00:00
parent 60060617a5
commit 6999e1a0a1
10 changed files with 65 additions and 44 deletions

View File

@@ -23,7 +23,7 @@ const ListItem: React.FC<ListItemProps> = ({
return (
<div className="p-4">
<div
className="min-w-[25vw] overflow-hidden flex-shrink-0 flex flex-col bg-purple-900 rounded-lg
className="min-w-[20vw] overflow-hidden flex-shrink-0 flex flex-col bg-purple-900 rounded-lg
cursor-pointer hover:bg-pink-700 hover:scale-105 transition-all"
onClick={onItemClick}
>

View File

@@ -52,7 +52,7 @@ const ListRow: React.FC<ListRowProps> = ({
</div>
<div className="relative overflow-hidden flex items-center z-0">
{!wrap && items.length > 3 && (
{!wrap && items.length > 4 && (
<>
<ArrowLeftIcon
onClick={slideLeft}