fix: code block styling in blockquotes (#6108)

pull/6185/head
Nyxtorm 2 years ago committed by GitHub
parent 78a35c377c
commit f972a9c7de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -282,7 +282,7 @@
content: "\F02FC"; content: "\F02FC";
} }
code { code:not([class^="language-"]) {
background-color: mc('blue', '50'); background-color: mc('blue', '50');
color: mc('blue', '800'); color: mc('blue', '800');
} }
@ -302,7 +302,7 @@
content: "\F0026"; content: "\F0026";
} }
code { code:not([class^="language-"]) {
background-color: mc('orange', '50'); background-color: mc('orange', '50');
color: mc('orange', '800'); color: mc('orange', '800');
} }
@ -323,7 +323,7 @@
content: "\F0159"; content: "\F0159";
} }
code { code:not([class^="language-"]) {
background-color: mc('red', '50'); background-color: mc('red', '50');
color: mc('red', '800'); color: mc('red', '800');
} }
@ -343,7 +343,7 @@
content: "\F0E1E"; content: "\F0E1E";
} }
code { code:not([class^="language-"]) {
background-color: mc('green', '50'); background-color: mc('green', '50');
color: mc('green', '800'); color: mc('green', '800');
} }

Loading…
Cancel
Save