mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-30 00:53:14 +00:00
fix(mobile): vertical overflows
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user