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; } }