diff --git a/components/product/ProductSlider/ProductSlider.module.css b/components/product/ProductSlider/ProductSlider.module.css index bfd7bc342..998ebe1ee 100644 --- a/components/product/ProductSlider/ProductSlider.module.css +++ b/components/product/ProductSlider/ProductSlider.module.css @@ -1,20 +1,20 @@ .root { - @apply relative w-full h-full relative; + @apply relative w-full h-full; overflow-y: hidden; } .leftControl, .rightControl { - @apply text-white text-xl absolute top-1/2 -translate-x-1/2 z-20 w-16 h-16 flex items-center justify-center bg-hover-1 rounded-full focus:outline-none focus:shadow-outline-blue hover:bg-hover-2; + @apply absolute top-1/2 -translate-x-1/2 z-20 w-16 h-16 flex items-center justify-center bg-hover-1 rounded-full focus:outline-none focus:shadow-outline-blue hover:bg-hover-2; } .leftControl { - @apply left-10 md:left-6; + @apply bg-cover left-10 md:left-6; background-image: url('public/cursor-left.png'); } .rightControl { - @apply right-10 md:right-6; + @apply bg-cover right-10 md:right-6; background-image: url('public/cursor-right.png'); } diff --git a/public/cursor-left.png b/public/cursor-left.png index b1233e279..14bbdf848 100644 Binary files a/public/cursor-left.png and b/public/cursor-left.png differ diff --git a/public/cursor-right.png b/public/cursor-right.png index ee78d78c6..c0d095354 100644 Binary files a/public/cursor-right.png and b/public/cursor-right.png differ