summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac2021-06-15 17:55:30 +0530
committerArun Isaac2021-06-15 17:55:30 +0530
commit2560f58150a24037e1cb509208b787b1b8b91075 (patch)
tree0414242ca416fd501181eb7c4b14889506985e6b
parentbf485dd43386305177a2ba3ea1a5ee7e164984c6 (diff)
downloadccwl-2560f58150a24037e1cb509208b787b1b8b91075.tar.gz
ccwl-2560f58150a24037e1cb509208b787b1b8b91075.tar.lz
ccwl-2560f58150a24037e1cb509208b787b1b8b91075.zip
website: Make SVG badges clickable.
* style.css (object): Set pointer-events to none.
-rw-r--r--style.css5
1 files changed, 5 insertions, 0 deletions
diff --git a/style.css b/style.css
index 70573dd..708d9aa 100644
--- a/style.css
+++ b/style.css
@@ -10,3 +10,8 @@ body {
h1, h2, h3 {
line-height: 1.2;
}
+
+/* Make the svg badges clickable. */
+object {
+ pointer-events: none;
+}