From 26d658f892d2164eddd1a9183a1c7eb14b938a72 Mon Sep 17 00:00:00 2001 From: Lam Nguyen Date: Tue, 1 Apr 2025 10:59:07 -0700 Subject: [PATCH] Line: Extend all horizontal lines into the gutter --- assets/css/v2/style.css | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/assets/css/v2/style.css b/assets/css/v2/style.css index 2e9c08ca..3e32655f 100644 --- a/assets/css/v2/style.css +++ b/assets/css/v2/style.css @@ -1114,6 +1114,10 @@ blockquote ul { white-space: nowrap; position: relative; + /* Move to gutter */ + width: calc(100% + 2rem); + margin-left: -1rem; + &::after { content: ""; position: absolute; @@ -1217,6 +1221,12 @@ blockquote ul { .tab-content { border-bottom: 1px solid black; padding-bottom: 1rem; + padding-left: 1rem; + padding-right: 1rem; + + /* Move to gutter */ + width: calc(100% + 2rem); + margin-left: -1rem; .tab-pane { display: none; @@ -1359,8 +1369,11 @@ figure { /* HR Lines */ hr { - width: 100%; - border-top: 1px solid var(--color-divider); + /* Move to gutter */ + width: calc(100% + 2rem); + margin-left: -1rem; + + border: 1px solid var(--color-divider); } /* FILTHY HACKS BEGIN */