diff --git a/quartz/components/Backlinks.tsx b/quartz/components/Backlinks.tsx
index a28529a00..de654297e 100644
--- a/quartz/components/Backlinks.tsx
+++ b/quartz/components/Backlinks.tsx
@@ -14,7 +14,7 @@ const Backlinks: QuartzComponent = ({
const backlinkFiles = allFiles.filter((file) => file.links?.includes(slug))
return backlinkFiles.length <= 0 ? null : (
-
{i18n(cfg.locale).components.backlinks.title}
+
{i18n(cfg.locale).components.backlinks.title}
{backlinkFiles.map((f) => (
-
diff --git a/quartz/components/styles/backlinks.scss b/quartz/components/styles/backlinks.scss
index 04302f22e..53ced2f76 100644
--- a/quartz/components/styles/backlinks.scss
+++ b/quartz/components/styles/backlinks.scss
@@ -8,7 +8,6 @@
& > ul {
list-style: none;
- padding: 0;
margin: 0.5rem 0;
& > li {
diff --git a/quartz/styles/custom.scss b/quartz/styles/custom.scss
index a327eacd0..52d5e8809 100644
--- a/quartz/styles/custom.scss
+++ b/quartz/styles/custom.scss
@@ -21,4 +21,8 @@ a.internal {
.search>#search-container {
background-color: #23252f33;
backdrop-filter: blur(8px);
+}
+
+.backlinks>ul {
+ list-style: disc;
}
\ No newline at end of file