Disable text selection

This commit is contained in:
Manos Katsomallos 2024-01-05 13:02:54 +02:00
parent 027a4dd85b
commit 02eab4d232

View File

@ -6,6 +6,10 @@ body, html {
* { * {
padding: 0; padding: 0;
margin: 0; margin: 0;
/* Disable text selection */
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10 and IE 11 */
user-select: none; /* Standard syntax */
} }
body { body {