diff --git a/quartz.config.ts b/quartz.config.ts index 51d4af3..bf1988a 100644 --- a/quartz.config.ts +++ b/quartz.config.ts @@ -69,7 +69,6 @@ const config: QuartzConfig = { Plugin.TableOfContents(), Plugin.CrawlLinks({ markdownLinkResolution: "shortest" }), Plugin.Description(), - Plugin.HardLineBreaks(), ], filters: [Plugin.RemoveDrafts()], emitters: [ diff --git a/quartz/styles/custom.scss b/quartz/styles/custom.scss index b229402..5b13e96 100644 --- a/quartz/styles/custom.scss +++ b/quartz/styles/custom.scss @@ -27,8 +27,23 @@ --color: #a672c0; } +table { + border: 2px solid var(--gray); + + & thead > tr { + border-bottom: 2px solid var(--lightgray); + + & th { + border: 1px solid var(--lightgray); + } + } + + & td { + border: 1px solid var(--lightgray); + } +} + .callout.note { - & table { margin: 0; margin-bottom: 0.5rem; @@ -65,8 +80,14 @@ ul.overflow::after, ol.overflow::after { & .center { & p { font-size: 1.15rem; + white-space: break-spaces; + hyphens: none; } + & li { + font-size: 1.15rem; + } + & h3 { font-size: 1.5rem; }