fix(mobile): vertical overflows

This commit is contained in:
ManishMadan2882
2024-09-18 01:44:34 +05:30
parent 5112801c37
commit b5f1a8e90f
5 changed files with 31 additions and 19 deletions

View File

@@ -67,7 +67,17 @@ body {
overflow-x: hidden;
font-family: 'Inter', sans-serif;
}
/*
Avoid changing height in mobile browsers
*/
@media only screen and (max-width: 500px) {
body,html {
height: 100%;
position: fixed;
width: 100%;
overflow-y: none;
}
}
/**
* Render the `main` element consistently in IE.
*/
@@ -427,7 +437,7 @@ template {
}
::-webkit-scrollbar {
width: 0;
width: 10;
}
input:-webkit-autofill {