File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -173,5 +173,10 @@ code {
173173}
174174
175175pre {
176- @apply text-wrap;
176+ @apply bg-muted;
177+ @apply overflow-x-scroll;
177178}
179+
180+ * {
181+ min-width : 0 ;
182+ }
Original file line number Diff line number Diff line change 11<script lang =" ts" >
22 import ' ../app.css' ;
3+ import ' highlight.js/styles/atom-one-dark.css' ;
34 import { ModeWatcher } from ' mode-watcher' ;
45 import { Toaster } from ' $lib/components/ui/sonner' ;
56 import NavBar from ' $lib/components/shared/NavBar.svelte' ;
67 import Footer from ' $lib/components/shared/Footer.svelte' ;
78 import SideNav from ' $lib/components/shared/SideNav.svelte' ;
9+ import hljs from ' highlight.js' ;
10+ import { onMount } from ' svelte' ;
11+
12+ onMount (() => {
13+ hljs .highlightAll ();
14+ });
815 </script >
916
1017<div class =" flex min-h-screen flex-col" >
You can’t perform that action at this time.
0 commit comments