From 6ed270c951e36900826b6565c18adb366d37b339 Mon Sep 17 00:00:00 2001
From: Rishika12U <151054846+Rishika12U@users.noreply.github.com>
Date: Sun, 20 Jul 2025 12:31:58 +0530
Subject: [PATCH] Fix: Center horizontal rules (---) in backlog pages
---
common-theme/layouts/partials/head.html | 2 ++
common-theme/static/css/custom.css | 5 +++++
2 files changed, 7 insertions(+)
create mode 100644 common-theme/static/css/custom.css
diff --git a/common-theme/layouts/partials/head.html b/common-theme/layouts/partials/head.html
index 62c7b8311..dd2ec1af6 100644
--- a/common-theme/layouts/partials/head.html
+++ b/common-theme/layouts/partials/head.html
@@ -72,4 +72,6 @@
+
+
diff --git a/common-theme/static/css/custom.css b/common-theme/static/css/custom.css
new file mode 100644
index 000000000..29d8c4977
--- /dev/null
+++ b/common-theme/static/css/custom.css
@@ -0,0 +1,5 @@
+hr {
+ margin-left: auto;
+ margin-right: auto;
+ width: 80%;
+}