Skip to content

Commit 6ed270c

Browse files
committed
Fix: Center horizontal rules (---) in backlog pages
1 parent b5beaaf commit 6ed270c

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

common-theme/layouts/partials/head.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,6 @@
7272
<link rel="shortcut icon" href="{{ .Site.BaseURL }}favicon.ico" />
7373
<meta name="theme-color" content="#e3ddeef2" />
7474
<link rel="manifest" href="{{ .Site.BaseURL }}manifest.json" />
75+
<link rel="stylesheet" href="/css/custom.css" />
76+
7577
</head>

common-theme/static/css/custom.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
hr {
2+
margin-left: auto;
3+
margin-right: auto;
4+
width: 80%;
5+
}

0 commit comments

Comments
 (0)