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) { }