Allow text selection in footer for email copy/click

This commit is contained in:
choibk 2026-01-19 19:47:00 +09:00
parent 10f3d3468b
commit 67b2684f64

View File

@ -51,6 +51,16 @@ textarea {
user-select: text;
}
/* Allow text selection in footer for contact info copying */
.footer-info p,
.footer-info a {
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
cursor: pointer;
}
/* Content Protection: Disable Image Dragging & Right Click */
img {
-webkit-user-drag: none;