From 3ac6b42e16dca5a44ed3fec2c0314f1dbbc2322b Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun, 16 Jul 2023 06:02:12 +0000
Subject: [PATCH] finish path refactoring, add sourcemap + better trace support
---
quartz/components/styles/listPage.scss | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/quartz/components/styles/listPage.scss b/quartz/components/styles/listPage.scss
index 1823815..6c8e1b5 100644
--- a/quartz/components/styles/listPage.scss
+++ b/quartz/components/styles/listPage.scss
@@ -1,3 +1,5 @@
+@use "../../styles/variables.scss" as *;
+
ul.section-ul {
list-style: none;
margin-top: 2em;
@@ -11,7 +13,7 @@
display: grid;
grid-template-columns: 6em 3fr 1fr;
- @media all and (max-width: 600px) {
+ @media all and (max-width: $mobileBreakpoint) {
& > .tags {
display: none;
}
@@ -22,7 +24,7 @@
margin-left: 1rem;
}
- & > .desc a {
+ & > .desc > h3 > a {
background-color: transparent;
}
--
Gitblit v1.10.0