From e77dfffaeec22c46feba02f9edb8a175338ce335 Mon Sep 17 00:00:00 2001 From: Abhiraj Roy <157954129+iconized@users.noreply.github.com> Date: Fri, 7 Jun 2024 04:07:04 +0530 Subject: [PATCH] :bug: fix(media): { expectedcss(css-lcurlyexpected) fix the problem Signed-off-by: Abhiraj Roy <157954129+iconized@users.noreply.github.com> --- assets/tailwind.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/tailwind.css b/assets/tailwind.css index 5a73700f..25fad04b 100644 --- a/assets/tailwind.css +++ b/assets/tailwind.css @@ -229,21 +229,21 @@ main.page { /* * Mobile min view to tablet max view (width: 0 to 1020) */ -@media screen (max-width: 1020px) { +@media screen and (max-width: 1020px) { } /* * Tablet min view to desktop medium view (width: 1020 to 1920) (height: 0 to 1080) */ -@media screen (min-width: 1020px) and (max-width: 1920px) and (max-height: 1080px) { +@media screen and (min-width: 1020px) and (max-width: 1920px) and (max-height: 1080px) { } /* * Desktop medium view to desktop max view (width: 1920 to infinte) (height: 1080 to infinite) */ -@media screen (min-width: 1920px) and (min-height: 1080px) { +@media screen and (min-width: 1920px) and (min-height: 1080px) { }