From 084c10de3716e57ea2a6d3369f2fc4c29a7ff758 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 11 Sep 2025 16:43:19 -0400 Subject: [PATCH] test --- saved-customizations.css | 12 ++++++++++++ templates/base.html | 7 ++++--- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/saved-customizations.css b/saved-customizations.css index 6f01368..558a44d 100644 --- a/saved-customizations.css +++ b/saved-customizations.css @@ -89,4 +89,16 @@ h3 { /* Reduce article padding */ article { padding: 3rem 0rem !important; +} + +/* Fix hr alignment with content */ +hr { + width: 70% !important; +} + +/* Mobile override for hr */ +@media (max-width: 760px) { + hr { + width: 100% !important; + } } \ No newline at end of file diff --git a/templates/base.html b/templates/base.html index 7d1c4ae..4296e37 100644 --- a/templates/base.html +++ b/templates/base.html @@ -390,9 +390,10 @@ } @media (max-width: 760px) { - main hr { - width: 100%; - max-width: 100%; + main hr, + .post-content hr { + width: 100% !important; + max-width: 100% !important; } }