From 0263edf09341c9292999200bb390b3d808308a6f Mon Sep 17 00:00:00 2001 From: Antoine M Date: Mon, 13 May 2024 15:03:28 +0200 Subject: [PATCH] shrink logo on mobile --- src/assets/css/components/ui/AppLogoMarkup.scss | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/assets/css/components/ui/AppLogoMarkup.scss b/src/assets/css/components/ui/AppLogoMarkup.scss index 2950aa3..e3f3c0d 100644 --- a/src/assets/css/components/ui/AppLogoMarkup.scss +++ b/src/assets/css/components/ui/AppLogoMarkup.scss @@ -1,6 +1,12 @@ .application-logo { @apply text-zuume text-center; - animation-play-state: bg-red-500; + // animation-play-state: bg-red-500; + + scale: 0.7; + @screen md { + scale: 1; + } + &__title { @apply text-9xl mb-2; }