We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 120c68d commit 90b5dcfCopy full SHA for 90b5dcf
gatsby-browser.js
@@ -1,4 +1,5 @@
1
import WebFont from 'webfontloader';
2
+// This theme defines a weird highlight on some tokens which we remove in our style.css
3
import 'prismjs/themes/prism.css';
4
5
WebFont.load({
src/common/style.css
@@ -292,3 +292,11 @@ main {
292
@apply mb-0;
293
}
294
295
+
296
+.language-css .token.string,
297
+.style .token.string,
298
+.token.entity,
299
+.token.operator,
300
+.token.url {
301
+ background: none; /* removing the weird highlighted background from prismjs default theme */
302
+}
0 commit comments