So I just wanted to ask if you guys could add blind mode where we can hide the cars. Whenever I am typing, it distracts me a lot seeing all those cars racing against each other. I always have to scroll up to the part to hide all those cars to type peacefully. Otherwise I reduce my speed by upto 20 wpm. An option to remove these and only show them after the race has completed would be very much appreciated. I am pretty sure other people also have such problem.
#Blind mode, hide the cars
1 messages · Page 1 of 1 (latest)
I'm not sure but maybe it is because of ADHD that I can't concentrate and keep looking at those cars.
@soft pecan You can do that with CSS and stylus, if you want to hide all of the cars you can do so with this:
.scoreboardContainer {
display: none !important;
}
or if you just want to hide the other cars but have yours shown:
.scoreboard .row:not(:first-child) {
display: none !important;
}
I hope this helps :)