как изменить курсор в scss?
Здраствуйте)
как изменить курсор на сайте чтобы делал клик по центе?
я делаю aimlab на react-е без canvas
я хотел изменить курсор на прицел но у меня проблема со кликом
для лучшего понимания я изменяю цвет головы на красную когда будет hover
вот scss
* {
padding: 0;
margin: 0;
box-sizing: border-box;
overflow: hidden;
user-select: none;
cursor: url('./cursor/minicursor.png'), auto !important;
}
body {
background-image: url("./img/bg/2.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 100vh;
}
.target {
display: none;
.head {
width: 35px;
height: 35px;
z-index: 987;
border-radius: 50%;
background-color: deepskyblue;
&:hover {
background-color: #f00;
}
}
.body {
width: 35px;
height: 85px;
z-index: 987;
border-radius: 16px;
background-color: deepskyblue;
}
.foots {
display: none;
justify-content: center;
.foot {
width: 17.5px;
height: 35px;
z-index: 987;
border-radius: 16px;
background-color: deepskyblue;
&:first-child {
margin-right: 5px;
}
}
}
}
a вот каком месте делается hover на голову но не смог сделать screenshot с курсором поэтому с телефона сделал)
как мне исправить это помогите пожалуйста)


