Skip to content

Commit

Permalink
Merge pull request #14 from natrontech/new-features
Browse files Browse the repository at this point in the history
fix: dark mode
  • Loading branch information
janlauber authored Jul 24, 2023
2 parents 7f0e2e5 + d87e89e commit 2facbbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kubelab-ui/src/routes/labs/[id]/[id]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@
<Pane>
<Splitpanes horizontal>
<Pane maxSize={75} size={65}>
<div class="p-2 leading-8 h-full overflow-y-scroll bg-white">
<div class="p-2 leading-8 h-full overflow-y-scroll dark:bg-neutral">
{#key $page.params}
<SvelteMarkdown
source={docs}
Expand All @@ -338,7 +338,7 @@
</div>
</Pane>
<Pane>
<div class="p-2 leading-8 h-full overflow-y-scroll">
<div class="p-2 leading-8 h-full overflow-y-scroll dark:bg-neutral">
{#key $page.params}
<div class="flex justify-center">
<!-- svelte-ignore missing-declaration -->
Expand Down

0 comments on commit 2facbbb

Please sign in to comment.