summaryrefslogtreecommitdiffstats
path: root/assets
diff options
context:
space:
mode:
authorsyeopite <syeopite@syeopite.dev>2021-04-07 00:09:38 -0700
committersyeopite <syeopite@syeopite.dev>2021-04-07 00:09:38 -0700
commit5f2e87f0e365667a9c82f7b2958825d8187d6585 (patch)
tree5491736a6ce375fb5512e61f6903322d2a3b3392 /assets
parentd9528f5cc3853681e237526b1b376750ccc008aa (diff)
downloadinvidious-5f2e87f0e365667a9c82f7b2958825d8187d6585.tar.gz
invidious-5f2e87f0e365667a9c82f7b2958825d8187d6585.tar.bz2
invidious-5f2e87f0e365667a9c82f7b2958825d8187d6585.zip
Fix rendering of hr element
Diffstat (limited to 'assets')
-rw-r--r--assets/css/default.css7
1 files changed, 7 insertions, 0 deletions
diff --git a/assets/css/default.css b/assets/css/default.css
index 621b1483..107973e6 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;
+}