From c32a4f80e5dd67e1b679a9fc84a8276f3c9fd1e6 Mon Sep 17 00:00:00 2001 From: Dorian Date: Tue, 3 Feb 2026 00:17:26 +0000 Subject: [PATCH] Make splash logo responsive - 200px mobile, 400px desktop Co-authored-by: Cursor --- src/components/SplashIntro.vue | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/components/SplashIntro.vue b/src/components/SplashIntro.vue index fcd6568..fb12d7f 100644 --- a/src/components/SplashIntro.vue +++ b/src/components/SplashIntro.vue @@ -270,8 +270,15 @@ onMounted(() => { } .splash-logo { - width: 400px; - height: 400px; + width: 200px; + height: 200px; +} + +@media (min-width: 768px) { + .splash-logo { + width: 400px; + height: 400px; + } } /* Stroke Drawing Animation - Staggered timing */