diff options
| -rw-r--r-- | app/assets/css/global.css | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/app/assets/css/global.css b/app/assets/css/global.css index 9950712524..b30b5167ca 100644 --- a/app/assets/css/global.css +++ b/app/assets/css/global.css @@ -1,7 +1,13 @@ * { box-sizing: border-box; } html { - -webkit-font-smoothing: antialiased; + -webkit-font-smoothing: antialiased; + user-select: none; + cursor: default; +} + +img { + -webkit-user-drag: none; } body { |
