Use a CSS snippet instead of the style settings plugin

This commit is contained in:
2026-07-29 11:20:53 -04:00
parent d5924d3436
commit 169b78220f
3 changed files with 19 additions and 3 deletions

View File

@@ -7,7 +7,8 @@
"baseFontSize": 18,
"enabledCssSnippets": [
"font",
"vim-cursor"
"vim-cursor",
"text-normalize"
],
"accentColor": ""
}

View File

@@ -5,6 +5,5 @@
"multi-vault-links",
"typewriter-mode",
"obsidian-vimrc-support",
"tag-wrangler",
"obsidian-style-settings"
"tag-wrangler"
]

View File

@@ -0,0 +1,16 @@
/* Minimal -- heading overrides */
body {
--h1-size: 18px;
--h1-weight: 600;
--h2-size: 18px;
--h2-weight: 600;
--h3-size: 18px;
--h3-weight: 600;
--h4-size: 18px;
--h4-weight: 600;
--h5-size: 18px;
--h5-weight: 600;
--h6-size: 18px;
--h6-weight: 600;
--h6-variant: normal;
}