Skip to content

Commit 2ccab43

Browse files
committed
fix: pin Tabler Icons to v3.25.0 to fix filled icon rendering
v3.26+ has a known issue where icons appear as filled/black shapes instead of outline icons. See: tabler/tabler-icons#1310
1 parent 91e3a13 commit 2ccab43

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

templates/Layout.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ const GITHUB_URL = "https://github.com/jsr-probitas/probitas";
1010
const CDN = {
1111
fonts:
1212
"https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap",
13+
// Pin to v3.25.0 - v3.26+ has rendering issues where icons appear filled/black
14+
// See: https://github.com/tabler/tabler-icons/issues/1310
1315
tablerIcons:
14-
"https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/dist/tabler-icons.min.css",
16+
"https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@3.25.0/dist/tabler-icons.min.css",
1517
hljs: "https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.9.0/build",
1618
};
1719

0 commit comments

Comments
 (0)