From cbae88fc4e9b98764cfccca2e85f265c4b894573 Mon Sep 17 00:00:00 2001
From: Adam Brangenberg <adambrangenberg@proton.me>
Date: Mon, 31 Jul 2023 04:08:32 +0000
Subject: [PATCH] Removing redundant properties (#356)
---
quartz/components/styles/listPage.scss | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/quartz/components/styles/listPage.scss b/quartz/components/styles/listPage.scss
index 1823815..7105a1e 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,8 +24,8 @@
margin-left: 1rem;
}
- & > .desc a {
- background-color: transparent;
+ & > .desc > h3 > a {
+ background-color: transparent;
}
& > .meta {
--
Gitblit v1.10.0