feat: Initialize React frontend project with Vite, Tailwind CSS, Radix UI, and global styling.

This commit is contained in:
SaelixCode
2026-02-25 11:43:06 -05:00
parent 431f29c490
commit cd006feb6a
7 changed files with 665 additions and 884 deletions
+2 -2
View File
@@ -33,9 +33,9 @@ const ScrollBar = React.forwardRef<
className={cn(
"flex touch-none select-none transition-colors",
orientation === "vertical" &&
"h-full w-2.5 border-l border-l-transparent p-[1px]",
"h-full w-2.5 border-l border-l-transparent p-px",
orientation === "horizontal" &&
"h-2.5 flex-col border-t border-t-transparent p-[1px]",
"h-2.5 flex-col border-t border-t-transparent p-px",
className
)}
{...props}