make user-select none by default

This commit is contained in:
2022-11-17 07:34:47 +01:00
parent b77373eef5
commit 88d7de9ef1
2 changed files with 15 additions and 3 deletions

View File

@@ -8,6 +8,18 @@ html, body {
overflow: hidden;
}
#app {
height: 100%;
body {
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.selectable {
-webkit-user-select: text;
-ms-user-select: text;
user-select: text;
}
#app {
height: 100%;
}