disable selection

This commit is contained in:
Unrud 2018-09-07 09:29:07 +02:00
parent bc6d25458f
commit 08a7df30e5
2 changed files with 14 additions and 3 deletions

View file

@ -110,4 +110,15 @@ body {
.icon {
font-family: "icon";
}
}
p {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
button:focus {
outline: none;
}