aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshley <iamashley@tuta.io>2022-08-20 15:31:07 +0300
committerGitHub <noreply@github.com>2022-08-20 15:31:07 +0300
commit6ec827cce3922214702e40e9ef2c3eecf46d9399 (patch)
tree886d5844faf836cb1f098d0fcddf072e86515da2
parent3cf6d2e6a43d9531fb51458abacf13841088744b (diff)
downloadexhq.github.io-6ec827cce3922214702e40e9ef2c3eecf46d9399.tar.gz
exhq.github.io-6ec827cce3922214702e40e9ef2c3eecf46d9399.tar.bz2
exhq.github.io-6ec827cce3922214702e40e9ef2c3eecf46d9399.zip
disable pointer events on images
-rw-r--r--styles.css5
1 files changed, 5 insertions, 0 deletions
diff --git a/styles.css b/styles.css
index 9744380..232dfb9 100644
--- a/styles.css
+++ b/styles.css
@@ -274,3 +274,8 @@ html{
font-weight: 9000;
font-size: 120%;
}
+
+/* disable pointer events on images */
+img{
+ pointer-events:none;
+}