From 67b2684f6457d6a65955b449270153b491131ff9 Mon Sep 17 00:00:00 2001 From: choibk Date: Mon, 19 Jan 2026 19:47:00 +0900 Subject: [PATCH] Allow text selection in footer for email copy/click --- src/styles/main.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/styles/main.css b/src/styles/main.css index a772b2f..581ec11 100644 --- a/src/styles/main.css +++ b/src/styles/main.css @@ -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;