From 5fcba1bfaf8821fbb01cc7e67e01c553ffebfa39 Mon Sep 17 00:00:00 2001
From: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 19 Jul 2024 17:02:03 +0000
Subject: [PATCH] chore(deps): bump mdast-util-to-hast from 13.1.0 to 13.2.0 (#1279)
---
quartz/styles/base.scss | 33 ++++++++++++++++++++++++++++-----
1 files changed, 28 insertions(+), 5 deletions(-)
diff --git a/quartz/styles/base.scss b/quartz/styles/base.scss
index 859bb43..8e791db 100644
--- a/quartz/styles/base.scss
+++ b/quartz/styles/base.scss
@@ -20,11 +20,10 @@
}
.text-highlight {
- background-color: #fff23688;
+ background-color: var(--textHighlight);
padding: 0 0.1rem;
border-radius: 5px;
}
-
::selection {
background: color-mix(in srgb, var(--tertiary) 60%, rgba(255, 255, 255, 0));
color: var(--darkgray);
@@ -43,10 +42,22 @@
.math {
color: var(--darkgray);
fill: var(--darkgray);
- overflow-wrap: anywhere;
hyphens: auto;
}
+p,
+ul,
+text,
+a,
+li,
+ol,
+ul,
+.katex,
+.math {
+ overflow-wrap: anywhere;
+ /* tr and td removed from list of selectors for overflow-wrap, allowing them to use default 'normal' property value */
+}
+
.math {
&.math-display {
text-align: center;
@@ -190,11 +201,19 @@
}
}
- & .page-header {
+ & .page-header,
+ & .page-footer {
width: $pageWidth;
- margin: $topSpacing auto 0 auto;
+ margin-top: 1rem;
+
@media all and (max-width: $fullPageWidth) {
width: initial;
+ }
+ }
+
+ & .page-header {
+ margin: $topSpacing auto 0 auto;
+ @media all and (max-width: $fullPageWidth) {
margin-top: 2rem;
}
}
@@ -481,6 +500,10 @@
flex: 1 1 auto;
}
+div:has(> .overflow) {
+ position: relative;
+}
+
ul.overflow,
ol.overflow {
max-height: 400;
--
Gitblit v1.10.0