Update backlink box border styling

This commit is contained in:
2026-09-21 23:19:32 -04:00
parent 31fc89726d
commit 8aebc523c8
2 changed files with 4 additions and 8 deletions

View File

@@ -8,10 +8,8 @@ layout: default
<br /> <br />
<hr class="backlink-divider">
<div class="backlink-box">
{% if page.backlinks.size > 0 %} {% if page.backlinks.size > 0 %}
<div class="backlink-box">
<h3>Notes mentioning this note</h3> <h3>Notes mentioning this note</h3>
<div> <div>
{% for backlink in page.backlinks %} {% for backlink in page.backlinks %}
@@ -20,7 +18,7 @@ layout: default
</div> </div>
{% endfor %} {% endfor %}
</div> </div>
{% endif %}
</div> </div>
{% endif %}
<br /> <br />

View File

@@ -1,10 +1,8 @@
.backlink-divider {
color: var(--color-background-2);
}
.backlink-box { .backlink-box {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
border-top: 1px solid var(--color-background-2);
padding-top: 16px;
} }
.backlinks { .backlinks {