UPDATE: Enhance game on NotFoundPage;

REFACTOR: Add comments;
PATCH: Removal unnecessary files;
REFACTOR: Rename of component folder to match case of other folders;
This commit is contained in:
Chris-1010
2025-02-23 20:47:04 +00:00
parent 634c02a9bc
commit 5c81f58e66
5 changed files with 70 additions and 105 deletions

View File

@@ -71,6 +71,7 @@ const ListRow = forwardRef<{ addMoreItems: (newItems: ListItemProps[]) => void }
: "flex-col space-y-4 py-6 px-5 mx-2 mt-5"
}`}
>
{/* List Details */}
<div
className={`text-center ${
variant === "search" ? "min-w-fit px-auto w-[15vw]" : ""
@@ -87,6 +88,7 @@ const ListRow = forwardRef<{ addMoreItems: (newItems: ListItemProps[]) => void }
<p>{description}</p>
</div>
{/* List Items */}
<div className="relative overflow-hidden flex flex-grow items-center z-0">
{!wrap && currentItems.length > (amountForScroll || 0) && (
<>