1
0
Fork 0

fix: resolve display issues in code blocks caused by display: grid in theme

This commit is contained in:
Harald Hoyer 2026-01-21 14:18:53 +01:00
parent 23b333bfae
commit 297a216a48

View file

@ -1,3 +1,8 @@
/****************************************************************************** /******************************************************************************
* Extra - Put your extra SASS/CSS here, it will get bundled with abridge.css * Extra - Put your extra SASS/CSS here, it will get bundled with abridge.css
*****************************************************************************/ *****************************************************************************/
// Fix code blocks - theme's display:grid breaks syntax highlighting spans
pre > code {
display: block !important;
}