aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlaster4385 <blaster4385@tablaster.dev>2024-02-21 11:40:37 +0530
committerBlaster4385 <blaster4385@tablaster.dev>2024-04-30 11:10:37 +0530
commitca6b42303cf290188cd01744f925285d6ed9399d (patch)
treec83f3adabf2845983d7600c2e59d96dbcce93e76
parent7219daaf19e5608aa4d342d2456b88c7491e0ebe (diff)
fix: make header unselectable
-rw-r--r--client/src/components/Header/Header.module.css4
1 files changed, 4 insertions, 0 deletions
diff --git a/client/src/components/Header/Header.module.css b/client/src/components/Header/Header.module.css
index 3fe6741..8d35b00 100644
--- a/client/src/components/Header/Header.module.css
+++ b/client/src/components/Header/Header.module.css
@@ -4,6 +4,10 @@
align-items: center;
margin: 0.5rem 2rem;
color: var(--color-light);
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
}
.header h1 {