🐛 fix(media): { expectedcss(css-lcurlyexpected) fix the problem

Signed-off-by: Abhiraj Roy <157954129+iconized@users.noreply.github.com>
This commit is contained in:
Abhiraj Roy
2024-06-07 04:07:04 +05:30
parent 938909ebc4
commit e77dfffaee

View File

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