This commit is contained in:
StephDietz 2023-07-11 15:46:20 -05:00
parent 5516124f89
commit a60af5f7e7
3 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@ const inter = Inter({
export default async function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en" className={inter.variable}>
<body className="bg-gray-50 text-black selection:bg-teal-300 dark:bg-dark dark:text-white dark:selection:bg-fuchsia-600 dark:selection:text-white">
<body className="text-black bg-gray-50 selection:bg-teal-300 dark:bg-dark dark:text-white dark:selection:bg-fuchsia-600 dark:selection:text-white">
<Navbar />
<Suspense>
<main>{children}</main>

View File

@ -11,7 +11,7 @@ export async function Carousel() {
return (
<div className="relative w-full pb-6 overflow-hidden">
<div className="flex space-x-6 animate-carousel">
<div className="flex space-x-4 animate-carousel">
{[...products, ...products].map((product, i) => (
<Link
key={`${product.handle}${i}`}

View File

@ -29,7 +29,7 @@ export function GridTileImage({
)}
>
{active !== undefined && active ? (
<span className="absolute h-full w-full bg-white opacity-25"></span>
<span className="absolute w-full h-full bg-white opacity-25"></span>
) : null}
{props.src ? (
<Image