From 0041aa4e2247195f3616644deae0ca187d37cb7e Mon Sep 17 00:00:00 2001 From: Zakarya Date: Fri, 20 Jun 2025 15:16:30 -0700 Subject: [PATCH] Hide the vertical pipe in the footer on mobile --- src/component/footer.svelte | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/component/footer.svelte b/src/component/footer.svelte index 626c4f1..25f8b25 100644 --- a/src/component/footer.svelte +++ b/src/component/footer.svelte @@ -2,7 +2,7 @@

© 2025 Colormatic Studios, All Rights Reserved.

support@colormatic.org - | + | contact@colormatic.org

@@ -28,10 +28,15 @@ footer { flex-direction: column; } + footer p { text-align: center; padding: 4px; margin: 4px; } + + .responsive-hidden { + display: none; + } }