Spaces:
Sleeping
Sleeping
/* 이미지 클릭할 때, 포인터 커서로 변경 */ | |
.battle-image img { | |
cursor: pointer ; | |
} | |
/***********************************************/ | |
/* 이미지 클릭 비활성화 */ | |
/***********************************************/ | |
.non-clickable { | |
pointer-events: none; /* 모든 포인터 이벤트(클릭, 호버 등)를 비활성화 */ | |
user-select: none; /* 텍스트 선택 방지 */ | |
} | |