blob: f03ad86d06ea05e38c5fb54fffbfca5ef2c4971f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
html {
background: $background;
}
* {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: -moz-none;
-o-user-select: none;
user-select: none;
}
|