From 1d2dc167f4397e230092cc867889a86734343cfc Mon Sep 17 00:00:00 2001
From: Thomas Hack <39602241+tha00@users.noreply.github.com>
Date: Fri, 25 Oct 2024 16:52:33 +0000
Subject: [PATCH] feat(folder): add intermediate folders pages (#1295)
---
quartz/components/styles/listPage.scss | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/quartz/components/styles/listPage.scss b/quartz/components/styles/listPage.scss
index c8fc9e9..e86c39d 100644
--- a/quartz/components/styles/listPage.scss
+++ b/quartz/components/styles/listPage.scss
@@ -11,9 +11,9 @@
& > .section {
display: grid;
- grid-template-columns: 6em 3fr 1fr;
+ grid-template-columns: fit-content(8em) 3fr 1fr;
- @media all and (max-width: $mobileBreakpoint) {
+ @media all and ($mobile) {
& > .tags {
display: none;
}
@@ -23,9 +23,8 @@
background-color: transparent;
}
- & > .meta {
- margin: 0;
- flex-basis: 6em;
+ & .meta {
+ margin: 0 1em 0 0;
opacity: 0.6;
}
}
@@ -33,7 +32,8 @@
// modifications in popover context
.popover .section {
- grid-template-columns: 6em 1fr !important;
+ grid-template-columns: fit-content(8em) 1fr !important;
+
& > .tags {
display: none;
}
--
Gitblit v1.10.0