forked from rDrama/rDrama
1
0
Fork 0

Chat height fix

master
Outrun Colors 2022-09-24 15:46:50 -05:00
parent 6b117decb8
commit 7a3cd597b2
No known key found for this signature in database
GPG Key ID: 0426976DCEFE6073
2 changed files with 3 additions and 8 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "chat", "name": "chat",
"version": "0.0.8", "version": "0.0.9",
"main": "index.js", "main": "index.js",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {

View File

@ -10,12 +10,6 @@ body {
overflow: hidden; overflow: hidden;
} }
@media screen and (min-width: 1000px) {
.App-content {
height: 740px !important;
}
}
.App-wrapper { .App-wrapper {
flex: 1; flex: 1;
overflow: hidden; overflow: hidden;
@ -46,7 +40,8 @@ body {
.App-content { .App-content {
position: relative; position: relative;
flex: 3; flex: 3;
height: 360px; height: 60vh;
max-height: 1000px;
overflow: auto; overflow: auto;
-ms-overflow-style: none; -ms-overflow-style: none;
scrollbar-width: none; scrollbar-width: none;