theme: Add border to highlighted code blocks within list items

This commit is contained in:
Joe Mooring
2025-02-13 08:57:30 +01:00
committed by Bjørn Erik Pedersen
parent 9630c38cb8
commit d906488d50
+3 -1
View File
@@ -41,6 +41,8 @@
/* This will not match highlighting inside e.g. the code-toggle shortcode. */
/* For more fine grained control of this, see components/shortcodes.css. */
.content > .highlight {
.content > .highlight,
.content dd > .highlight,
.content li > .highlight {
@apply border-1 border-gray-200 dark:border-slate-600 mt-6 mb-8;
}