diff --git a/frontend/src/ts/test/test-ui.ts b/frontend/src/ts/test/test-ui.ts index 542dd3afb5c1..83b7f65e6ea6 100644 --- a/frontend/src/ts/test/test-ui.ts +++ b/frontend/src/ts/test/test-ui.ts @@ -183,8 +183,12 @@ ConfigEvent.subscribe((eventKey, eventValue, nosave) => { if (eventKey === "tapeMode" && !nosave) { if (eventValue === "off") { $("#words").css("margin-left", "unset"); + $("#liveStatsMini").css("display", "").css("justify-content", ""); } else { scrollTape(); + $("#liveStatsMini") + .css("display", "flex") + .css("justify-content", "center"); } }