From 7d45d039e1cfb213f3def8cc53cae1ad9b9e5cea Mon Sep 17 00:00:00 2001 From: SrGooglo Date: Mon, 17 Jul 2023 17:51:05 +0000 Subject: [PATCH] adjust media queries --- packages/app/src/theme/index.less | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/packages/app/src/theme/index.less b/packages/app/src/theme/index.less index 6781837c..c4e9bde0 100755 --- a/packages/app/src/theme/index.less +++ b/packages/app/src/theme/index.less @@ -119,16 +119,24 @@ html { margin: auto; min-width: 400px; - max-width: 1100px; + max-width: 1200px; padding-left: 0; padding-right: 0; - @media screen and (max-width: 1920px) { + @media screen and (max-width:2000px) { + max-width: 1000px; + } + + @media screen and (max-width: 1444px) { max-width: 800px; } - @media screen and (max-width: 1160px) { + @media screen and (max-width: 1170px) { + max-width: 700px; + } + + @media screen and (max-width: 1024px) { max-width: 600px; } }