From 59e0eb98ae4444955c93b22233a4985c78532769 Mon Sep 17 00:00:00 2001 From: se2crid <151872490+se2crid@users.noreply.github.com> Date: Wed, 24 Dec 2025 13:31:34 +0100 Subject: [PATCH] fix: input maybe --- src/App.css | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/App.css b/src/App.css index e884c31..b927a22 100644 --- a/src/App.css +++ b/src/App.css @@ -27,13 +27,20 @@ * { box-sizing: border-box; - /* TODO: Find solution that doesn't break inputs */ - /* -webkit-user-select: none; */ + -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } +input, +textarea { + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; +} + body { margin: 0; min-height: 100vh;