phone fix

This commit is contained in:
Marty Killian 2023-12-13 09:39:07 +01:00
parent 5e83426ebd
commit 1c220d8950
2 changed files with 7 additions and 1 deletions

View file

@ -64,7 +64,13 @@ html, body{
width: 100%;
overflow-y: scroll;
overflow-x: hidden;
}
#chatMessages::-webkit-scrollbar{
display: none;
}
#chatInputDiv{
height: 10%;
width: 100%;

View file

@ -213,7 +213,7 @@ class Car
let collide = (cx<=x && x<=cx+carSize && cy<=y && y<=cy+carSize);
if(collide) {
driftSound.play()
this.drift=300*dt;
this.drift=75*dt;
}
return collide;
}