mirror of
https://github.com/Snigdha-OS/Snigdha-OS.github.io.git
synced 2025-09-05 20:26:43 +02:00
🐛 fix(media): { expectedcss(css-lcurlyexpected) fix the problem
Signed-off-by: Abhiraj Roy <157954129+iconized@users.noreply.github.com>
This commit is contained in:
@@ -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) {
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user