Fixed code highlighting styles stuck in dark mode

This commit is contained in:
Chris Kankiewicz
2025-03-16 21:56:28 -07:00
parent fe3dd25f9c
commit c99ed17eba

View File

@@ -4,8 +4,13 @@
@import "@fortawesome/fontawesome-free/css/brands.css";
@import "@fortawesome/fontawesome-free/css/solid.css";
@import 'highlight.js/styles/github.css';
@import 'highlight.js/styles/github-dark.css';
.light {
@import 'highlight.js/styles/github.css';
}
.dark {
@import 'highlight.js/styles/github-dark.css';
}
@import "tailwindcss";