필터 로직 개선
최종 스크립트 코드 정리
This commit is contained in:
2026-02-22 13:08:50 +09:00
parent 769e0f4b96
commit c3e207e94f
8 changed files with 1013 additions and 1029 deletions

View File

@@ -553,6 +553,9 @@
.min-w-0 {
min-width: calc(var(--spacing) * 0);
}
.min-w-16 {
min-width: calc(var(--spacing) * 16);
}
.min-w-40 {
min-width: calc(var(--spacing) * 40);
}
@@ -2084,6 +2087,17 @@
button:disabled {
cursor: default;
}
.product-card {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
}
#product-modal, input, textarea {
-webkit-user-select: text;
user-select: text;
}
}
@layer utilities {
.no-scrollbar::-webkit-scrollbar {