From 8dfab72ae224fb11bf567e3c530998f43af9a1c7 Mon Sep 17 00:00:00 2001 From: neoapps-dev Date: Thu, 16 Apr 2026 22:47:47 +0300 Subject: [PATCH] feat: use LCE's pointer --- src/components/views/HomeView.tsx | 2 +- src/css/index.css | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/components/views/HomeView.tsx b/src/components/views/HomeView.tsx index 1d3bd25..aec2c45 100644 --- a/src/components/views/HomeView.tsx +++ b/src/components/views/HomeView.tsx @@ -182,7 +182,7 @@ const HomeView = memo(function HomeView() { setShowCredits(true); } }} - className={`text-white hover:text-[#FFFF55] text-xl mc-text-shadow tracking-widest transition-colors mt-1 bg-transparent border-none outline-none ${!isFocusedSection ? "cursor-default pointer-events-none" : ""}`} + className={`text-white hover:text-[#FFFF55] text-xl mc-text-shadow tracking-widest transition-colors mt-1 bg-transparent border-none outline-none ${!isFocusedSection ? "pointer-events-none" : ""}`} > EMERALD TEAM diff --git a/src/css/index.css b/src/css/index.css index eab5d9d..4ca286a 100644 --- a/src/css/index.css +++ b/src/css/index.css @@ -38,6 +38,10 @@ cursor: not-allowed; } +* { + cursor: url('/images/pointer.png') 16 16, auto; +} + body { margin: 0; background-color: #000; @@ -96,7 +100,6 @@ body { background: url('/images/Slider_Handle.png') no-repeat center; background-size: 100% 100%; image-rendering: pixelated; - cursor: pointer; min-height: 44px; } @@ -118,7 +121,6 @@ body { background: url('/images/Slider_Handle.png') no-repeat center; background-size: 100% 100%; image-rendering: pixelated; - cursor: pointer; min-height: 44px; } @@ -129,4 +131,4 @@ body { .no-animations * { transition: none !important; animation: none !important; -} \ No newline at end of file +}