summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/styles/main.scss10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/styles/main.scss b/src/styles/main.scss
index e3fa602..26def86 100644
--- a/src/styles/main.scss
+++ b/src/styles/main.scss
@@ -7,6 +7,7 @@ html {
background-size: cover;
-webkit-overflow-scrolling: touch;
overflow: hidden;
+ user-select: none;
}
@keyframes blink{
0% { opacity: .25;}
@@ -15,6 +16,13 @@ html {
75% { opacity: .5;}
100%{ opacity: .25;}
}
+
+img {
+ user-select: none !important;
+ touch-action: none;
+ pointer-events: none;
+}
+
body {
overflow: hidden;
@@ -31,4 +39,4 @@ body {
background: white;
font-size: 1.5rem;
}
-} \ No newline at end of file
+}