We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbae73b commit 05520ddCopy full SHA for 05520dd
2 files changed
docs/app/shell.css
@@ -950,6 +950,12 @@ details[open] > .sidebar-section-header::after {
950
border: none;
951
}
952
953
+.prose pre code.hljs {
954
+ overflow: visible;
955
+ padding: 0;
956
+ background: transparent;
957
+}
958
+
959
.prose blockquote {
960
margin: 1.25rem 0;
961
padding: 0.85rem 1.15rem;
docs/app/shell.html
@@ -21,4 +21,11 @@
21
<main class="page">
22
{{ sprag_slot }}
23
</main>
24
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/github-dark.min.css">
25
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/highlight.min.js"></script>
26
+ <script>
27
+ if (window.hljs) {
28
+ window.hljs.highlightAll();
29
+ }
30
+ </script>
31
</div>
0 commit comments