diff options
Diffstat (limited to 'src/styles/main.scss')
-rw-r--r-- | src/styles/main.scss | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/styles/main.scss b/src/styles/main.scss index fca72d9..5d2d950 100644 --- a/src/styles/main.scss +++ b/src/styles/main.scss @@ -55,8 +55,16 @@ html { height: 100%; background-size: cover; -webkit-overflow-scrolling: touch; + user-select: none; } +img { + user-select: none !important; + touch-action: none; + pointer-events: none; +} + + body { font-size: 1.2rem; font-family: Arial; @@ -230,4 +238,4 @@ body { background: white; font-size: 1.5rem; } -}
\ No newline at end of file +} |