From 27a6087dd5a25dd5031b86b9917adde6ef4b211a Mon Sep 17 00:00:00 2001
From: rwutscher <richard.wutscher@gmail.com>
Date: Tue, 19 Sep 2023 19:26:30 +0000
Subject: [PATCH] fix: tag regex no longer includes purely numerical 'tags' (#485)

---
 quartz/components/styles/popover.scss |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/quartz/components/styles/popover.scss b/quartz/components/styles/popover.scss
index 55d38c9..fae0e12 100644
--- a/quartz/components/styles/popover.scss
+++ b/quartz/components/styles/popover.scss
@@ -43,7 +43,9 @@
 
   visibility: hidden;
   opacity: 0;
-  transition: opacity 0.3s ease, visibility 0.3s ease;
+  transition:
+    opacity 0.3s ease,
+    visibility 0.3s ease;
 
   @media all and (max-width: $mobileBreakpoint) {
     display: none !important;

--
Gitblit v1.10.0