From 5f2e87f0e365667a9c82f7b2958825d8187d6585 Mon Sep 17 00:00:00 2001 From: syeopite Date: Wed, 7 Apr 2021 00:09:38 -0700 Subject: [PATCH] Fix rendering of hr element --- assets/css/default.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/assets/css/default.css b/assets/css/default.css index 621b1483c..107973e65 100644 --- a/assets/css/default.css +++ b/assets/css/default.css @@ -662,3 +662,10 @@ body.dark-theme { content: "[ - ]"; font-size: 1.5em; } + +/*With commit d9528f5 all contents of the page is now within a flexbox. However, +the hr element is rendered improperly within one. +See https://stackoverflow.com/a/34372979 for more info */ +hr { + margin: auto 0 auto 0; +}