From 05d1ca01c39e18fa08776d4800e201abf8779f3c Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri, 07 Jul 2023 01:32:48 +0000
Subject: [PATCH] handle string tags

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

diff --git a/quartz/styles/base.scss b/quartz/styles/base.scss
index 4d1145d..94c85c7 100644
--- a/quartz/styles/base.scss
+++ b/quartz/styles/base.scss
@@ -71,11 +71,6 @@
       font-size: 2rem;
     }
 
-    // darkmode diagrams
-    & svg {
-      stroke: var(--dark);
-    }
-
     & ul:has(input[type='checkbox']) {
       list-style-type: none;
       padding-left: 0;
@@ -89,15 +84,8 @@
       flex-direction: column;
     }
 
-    & .left, & .right {
+    & .sidebar {
       flex: 1;
-      width: calc(calc(100vw - $pageWidth) / 2);
-      @media all and (max-width: $fullPageWidth) {
-        width: initial;
-      }
-    }
-
-    & .left-inner, & .right-inner {
       display: flex;
       flex-direction: column;
       gap: 2rem;
@@ -116,7 +104,7 @@
       }
     }
 
-    & .left-inner {
+    & .sidebar.left {
       left: calc(calc(100vw - $pageWidth) / 2 - $sidePanelWidth);
       @media all and (max-width: $fullPageWidth) {
         gap: 1rem;
@@ -124,7 +112,7 @@
       }
     }
 
-    & .right-inner {
+    & .sidebar.right {
       right: calc(calc(100vw - $pageWidth) / 2 - $sidePanelWidth);
       & > * {
         @media all and (max-width: $fullPageWidth) {

--
Gitblit v1.10.0