diff --git a/src/lib/components/pages/PageLayout.svelte b/src/lib/components/pages/PageLayout.svelte
index db6fd2b..7c14356 100644
--- a/src/lib/components/pages/PageLayout.svelte
+++ b/src/lib/components/pages/PageLayout.svelte
@@ -12,7 +12,7 @@
Input
-
+
Alternative use
+
-
+
-
{/if}
diff --git a/src/lib/components/pages/Playground/Playground.svelte b/src/lib/components/pages/Playground/Playground.svelte
index b1f8396..7d4f95c 100644
--- a/src/lib/components/pages/Playground/Playground.svelte
+++ b/src/lib/components/pages/Playground/Playground.svelte
@@ -149,7 +149,7 @@
}
.output {
padding: var(--spacing-4);
- padding-top: var(--spacing-6);
+ padding-top: var(--spacing-5);
border-top-left-radius: 4px;
}
.output-inner {
diff --git a/src/lib/components/pages/Playground/PlaygroundOptions.svelte b/src/lib/components/pages/Playground/PlaygroundOptions.svelte
index 2e661f4..94e1367 100644
--- a/src/lib/components/pages/Playground/PlaygroundOptions.svelte
+++ b/src/lib/components/pages/Playground/PlaygroundOptions.svelte
@@ -10,7 +10,6 @@
import OptionCard from '$lib/components/ui/OptionCard.svelte';
import Details from '$lib/components/ui/details/Details.svelte';
import BrowserSupportGrid from '$lib/components/ui/BrowserSupport/BrowserSupportGrid.svelte';
- import Fieldset from '$lib/components/ui/Fieldset.svelte';
import Radio from '$lib/components/ui/Radio.svelte';
import { optionIsActive } from '$lib/playground/validate';
diff --git a/src/lib/components/ui/CodeBlock.svelte b/src/lib/components/ui/CodeBlock.svelte
index ba5078e..78a2253 100644
--- a/src/lib/components/ui/CodeBlock.svelte
+++ b/src/lib/components/ui/CodeBlock.svelte
@@ -10,11 +10,12 @@
tab-size: 2;
display: block;
padding: var(--spacing-4);
- background-color: #1b2b34;
+ background-color: var(--code-block-background);
font-size: 0.85rem;
- border-radius: 0.5rem;
+ border-radius: 4px;
overflow-x: auto;
color: var(--code-text-color);
font-family: var(--font-family);
+ border: 1px solid var(--border-color);
}
diff --git a/src/lib/components/ui/DarkModeToggle.svelte b/src/lib/components/ui/DarkModeToggle.svelte
index 4d0a0c1..4343039 100644
--- a/src/lib/components/ui/DarkModeToggle.svelte
+++ b/src/lib/components/ui/DarkModeToggle.svelte
@@ -1,27 +1,22 @@
diff --git a/src/lib/components/ui/Dialog.svelte b/src/lib/components/ui/Dialog.svelte
index b47d382..0e1da57 100644
--- a/src/lib/components/ui/Dialog.svelte
+++ b/src/lib/components/ui/Dialog.svelte
@@ -1,56 +1,47 @@
-
-
-