How to increase font size of backlinks? (linked mentions)

What would be the easiest way to increase the font size of the linked mentions at the bottom of each note? They are presently too small, and when I zoom in, the font size of everything else increases, but not the quotations found in the linked mentions.

This should cover it. The em values can be adjusted to your liking or changed to px values. e.g. 20px.

/* adjust font sizes for backlinks in document */
.embedded-backlinks .backlink-pane {
    
    & .tree-item-self {
        font-size: 1em; /* headings size */
    }    
    & .search-result-file-matches {
        font-size: 0.8em; /* results size */
    }
}

https://help.obsidian.md/Extending+Obsidian/CSS+snippets

1 Like

This is perfect, thank you!!

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.