From c8f5dbbad3a85749d8a74f5e3e3b222fe547d5d6 Mon Sep 17 00:00:00 2001
From: Luca Salvarani <lucasalvarani99@gmail.com>
Date: Mon, 02 Oct 2023 00:20:55 +0000
Subject: [PATCH] fix: Fix `Backlinks` not applying the display class (#519)

---
 quartz/styles/base.scss |   11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/quartz/styles/base.scss b/quartz/styles/base.scss
index 34def87..4aff241 100644
--- a/quartz/styles/base.scss
+++ b/quartz/styles/base.scss
@@ -328,6 +328,7 @@
 
   &:has(> code.mermaid) {
     border: none;
+    position: relative;
   }
 
   & > code {
@@ -446,7 +447,7 @@
 
 ul.overflow,
 ol.overflow {
-  height: 300px;
+  max-height: 400;
   overflow-y: auto;
 
   // clearfix
@@ -454,7 +455,7 @@
   clear: both;
 
   & > li:last-of-type {
-    margin-bottom: 50px;
+    margin-bottom: 30px;
   }
 
   &:after {
@@ -470,3 +471,9 @@
     background: linear-gradient(transparent 0px, var(--light));
   }
 }
+
+.transclude {
+  ul {
+    padding-left: 1rem;
+  }
+}

--
Gitblit v1.10.0