This commit is contained in:
2025-09-11 16:43:19 -04:00
parent 160fdeb55c
commit 084c10de37
2 changed files with 16 additions and 3 deletions
+12
View File
@@ -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;
}
}
+4 -3
View File
@@ -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;
}
}