[260219] 카드 터치 이벤트 수정

This commit is contained in:
2026-02-19 23:45:42 +09:00
parent cfd3fb8b75
commit 771f3fc9f2
15 changed files with 286 additions and 101 deletions

View File

@@ -37,6 +37,24 @@
button:disabled {
cursor: default;
}
.product-card {
-webkit-user-select: none; /* Safari/Chrome/iOS 전용 */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE/Edge */
user-select: none; /* 표준 */
/* iOS에서 롱 터치 시 링크/이미지 미리보기 팝업이 뜨는 것 방지 */
-webkit-touch-callout: none;
}
/* 텍스트 입력창이나 모달 내부의 상세 설명 등은 선택이 가능해야 하므로 예외 처리 */
#product-modal,
input,
textarea {
-webkit-user-select: text;
user-select: text;
}
}
@layer utilities {