diff --git a/src/lib/Categories.svelte b/src/lib/Categories.svelte
index 29e00c7..1a365b0 100644
--- a/src/lib/Categories.svelte
+++ b/src/lib/Categories.svelte
@@ -1,5 +1,7 @@
+
@@ -16,6 +21,7 @@
justify-content: space-between;
background: var(--card);
padding: 0.25rem 1rem;
+ flex-wrap: wrap;
a.title {
display: flex;
justify-content: center;
@@ -39,17 +45,6 @@
nav {
display: flex;
gap: 1rem;
- a {
- color: var(--foreground);
- text-decoration: none;
- padding: 0.25rem 0.5rem;
- border-radius: 6px;
- transition: all 250ms ease-in-out;
- &:hover {
- background: var(--gradient);
- transform: scale(1.05);
- }
- }
}
&.fixed {
position: fixed;
diff --git a/src/lib/InstallationInstructions.svelte b/src/lib/InstallationInstructions.svelte
index 9f1bdbb..0765aae 100644
--- a/src/lib/InstallationInstructions.svelte
+++ b/src/lib/InstallationInstructions.svelte
@@ -216,6 +216,9 @@
background: var(--card-2);
position: relative;
padding: 0.5rem;
+ pre {
+ font-size: 1rem;
+ }
.docker-command-copy {
position: absolute;
right: 0.5rem;
diff --git a/src/lib/MdContent.svelte b/src/lib/MdContent.svelte
index 2a7629f..6f04a45 100644
--- a/src/lib/MdContent.svelte
+++ b/src/lib/MdContent.svelte
@@ -1,8 +1,8 @@
+
+{#if showNav}
+
+{/if}
+
+
+
+
-
\ No newline at end of file
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte
index 61eff25..8b28dd7 100644
--- a/src/routes/+page.svelte
+++ b/src/routes/+page.svelte
@@ -90,5 +90,3 @@
{/if}
-
-
diff --git a/src/routes/[slug]/+page.svelte b/src/routes/[slug]/+page.svelte
index 93aed59..55d79a1 100644
--- a/src/routes/[slug]/+page.svelte
+++ b/src/routes/[slug]/+page.svelte
@@ -2,8 +2,6 @@
import { page } from '$app/stores';
- import Header from '$lib/Header.svelte';
- import Footer from '$lib/Footer.svelte';
import ServiceStats from '$lib/ServiceStats.svelte';
import TemplateNotFound from '$lib/TemplateNotFound.svelte';
import DockerStats from '$lib/DockerStats.svelte';
@@ -31,8 +29,6 @@
-
-
{#if template}
@@ -92,7 +88,6 @@
{/if}
-