dk-image-worldcup / ui /css /interactions.css
Kimilhee
파일 분리 리팩토링.
db315f2
raw
history blame contribute delete
410 Bytes
/* 이미지 클릭할 때, 포인터 커서로 변경 */
.battle-image img {
cursor: pointer !important;
}
/***********************************************/
/* 이미지 클릭 비활성화 */
/***********************************************/
.non-clickable {
pointer-events: none; /* 모든 포인터 이벤트(클릭, 호버 등)를 비활성화 */
user-select: none; /* 텍스트 선택 방지 */
}