diff options
author | Miodec <[email protected]> | 2023-03-07 14:57:37 +0100 |
---|---|---|
committer | Miodec <[email protected]> | 2023-03-07 14:57:37 +0100 |
commit | 31b1474a4783ec626eb417398a9d5d02fadd1e14 (patch) | |
tree | 5a43e8145c7d7c17cd99c51caf6b66894ea74c89 | |
parent | 98de529b9447bfbfe5cbf65007dbd7bcd6667e91 (diff) | |
download | monkeytype-31b1474a4783ec626eb417398a9d5d02fadd1e14.tar.gz monkeytype-31b1474a4783ec626eb417398a9d5d02fadd1e14.zip |
moved words input inside words wrapper
-rw-r--r-- | frontend/static/html/pages/test.html | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/frontend/static/html/pages/test.html b/frontend/static/html/pages/test.html index b3a2e33a1..349b0807f 100644 --- a/frontend/static/html/pages/test.html +++ b/frontend/static/html/pages/test.html @@ -100,19 +100,6 @@ </div> <div id="memoryTimer">Time left to memorise all words: 0s</div> <div id="testModesNotice"></div> - <input - id="wordsInput" - class="" - tabindex="0" - type="text" - autocomplete="off" - autocapitalize="off" - autocorrect="off" - data-gramm="false" - data-gramm_editor="false" - data-enable-grammarly="false" - list="autocompleteOff" - /> <div id="timerNumber" class="timerMain"> <div>60</div> </div> @@ -127,6 +114,19 @@ Click here or start typing to focus </div> <div id="wordsWrapper" translate="no"> + <input + id="wordsInput" + class="" + tabindex="0" + type="text" + autocomplete="off" + autocapitalize="off" + autocorrect="off" + data-gramm="false" + data-gramm_editor="false" + data-enable-grammarly="false" + list="autocompleteOff" + /> <div id="paceCaret" class="default hidden"></div> <div id="caret" class="default"></div> <div id="words"></div> |