diff --git a/components/product/ProductSlider/ProductSlider.module.css b/components/product/ProductSlider/ProductSlider.module.css index d3cedaf7f..a175f0b95 100644 --- a/components/product/ProductSlider/ProductSlider.module.css +++ b/components/product/ProductSlider/ProductSlider.module.css @@ -20,7 +20,7 @@ .leftControl, .rightControl { - @apply px-8 cursor-pointer; + @apply px-9 cursor-pointer; transition: background-color 0.2s ease; } diff --git a/components/product/ProductView/ProductView.module.css b/components/product/ProductView/ProductView.module.css index be86c687f..7970c2ece 100644 --- a/components/product/ProductView/ProductView.module.css +++ b/components/product/ProductView/ProductView.module.css @@ -1,5 +1,6 @@ .root { @apply relative grid items-start gap-1 grid-cols-1 overflow-x-hidden; + min-height: auto; } .main { @@ -63,7 +64,6 @@ @screen lg { .root { @apply grid-cols-12; - min-height: 900px; } .main { diff --git a/components/product/ProductView/ProductView.tsx b/components/product/ProductView/ProductView.tsx index 8fb88d2a7..aafb00fef 100644 --- a/components/product/ProductView/ProductView.tsx +++ b/components/product/ProductView/ProductView.tsx @@ -126,7 +126,9 @@ const ProductView: FC = ({ product, relatedProducts }) => { />
-
36 reviews
+
+ 36 reviews +
-
-
+
+
Related Products -
+
{relatedProducts.map((p) => (
= ({ product, relatedProducts }) => { variant="simple" className="animated fadeIn" imgProps={{ - width: 182, - height: 182, + width: 300, + height: 300, }} />
diff --git a/components/ui/Button/Button.module.css b/components/ui/Button/Button.module.css index 8b0487d5c..2ac7544f7 100644 --- a/components/ui/Button/Button.module.css +++ b/components/ui/Button/Button.module.css @@ -1,9 +1,10 @@ .root { @apply bg-accent-9 text-accent-0 cursor-pointer inline-flex - px-10 py-4 rounded-sm leading-6 transition ease-in-out duration-150 + px-10 py-5 leading-6 transition ease-in-out duration-150 shadow-sm text-center justify-center uppercase border border-transparent items-center text-sm font-semibold tracking-wide; + max-height: 64px; } .root:hover { @@ -42,3 +43,6 @@ -webkit-perspective: 1000; -webkit-backface-visibility: hidden; } + +.progress { +} diff --git a/components/ui/Collapse/Collapse.module.css b/components/ui/Collapse/Collapse.module.css index 075ccd3ed..fb4a82a90 100644 --- a/components/ui/Collapse/Collapse.module.css +++ b/components/ui/Collapse/Collapse.module.css @@ -7,7 +7,7 @@ } .header .label { - @apply text-sm font-medium; + @apply text-base font-medium; } .content { diff --git a/components/ui/Text/Text.module.css b/components/ui/Text/Text.module.css index b9e003b36..b0d9c2810 100644 --- a/components/ui/Text/Text.module.css +++ b/components/ui/Text/Text.module.css @@ -11,5 +11,5 @@ } .sectionHeading { - @apply pt-1 pb-2 text-2xl font-semibold tracking-wide cursor-pointer mb-2; + @apply pt-1 pb-2 text-2xl font-bold tracking-wide cursor-pointer mb-2; } diff --git a/pages/product/[slug].tsx b/pages/product/[slug].tsx index a5051eb6b..3988705fe 100644 --- a/pages/product/[slug].tsx +++ b/pages/product/[slug].tsx @@ -71,7 +71,7 @@ export default function Slug({ return router.isFallback ? (

Loading...

) : ( - + ) }