feat: use LCE's pointer

This commit is contained in:
neoapps-dev 2026-04-16 22:47:47 +03:00
parent 09bb57e9a6
commit 8dfab72ae2
2 changed files with 6 additions and 4 deletions

View file

@ -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
</button>

View file

@ -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;
}
}