From 250fc5d221cbfc580bd43277fae3e6d376122047 Mon Sep 17 00:00:00 2001 From: Siddharth Date: Wed, 10 Dec 2025 21:30:25 -0700 Subject: [PATCH] disable user-select --- src/index.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.css b/src/index.css index a452ccb..e154c45 100644 --- a/src/index.css +++ b/src/index.css @@ -65,6 +65,8 @@ } body { @apply bg-background text-foreground; + -webkit-user-select: none; + user-select: none; } }