From 78b33fc2fb2d2b30e0cdf6fbd50c74efceac1c56 Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon, 18 Dec 2023 00:46:17 +0000
Subject: [PATCH] fix: release build lock before client refresh

---
 quartz/styles/base.scss |   10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/quartz/styles/base.scss b/quartz/styles/base.scss
index 2e5edec..f65ab45 100644
--- a/quartz/styles/base.scss
+++ b/quartz/styles/base.scss
@@ -64,11 +64,17 @@
     color: var(--tertiary) !important;
   }
 
-  &.internal:not(:has(> img)) {
+  &.internal {
     text-decoration: none;
     background-color: var(--highlight);
     padding: 0 0.1rem;
     border-radius: 5px;
+
+    &:has(> img) {
+      background-color: none;
+      border-radius: 0;
+      padding: 0;
+    }
   }
 }
 
@@ -94,8 +100,6 @@
   }
 
   & article {
-    position: relative;
-
     & > h1 {
       font-size: 2rem;
     }

--
Gitblit v1.10.0