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%; width: 100%;
overflow-y: scroll; overflow-y: scroll;
overflow-x: hidden; overflow-x: hidden;
} }
#chatMessages::-webkit-scrollbar{
display: none;
}
#chatInputDiv{ #chatInputDiv{
height: 10%; height: 10%;
width: 100%; width: 100%;

View file

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