diff options
author | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2022-04-23 17:53:11 -0700 |
---|---|---|
committer | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2022-04-23 17:53:11 -0700 |
commit | d31b800c35595428790905b21b771bbc187488ab (patch) | |
tree | a79f14318c2472fca4c545374664b3c6e79101a8 /web/static | |
parent | 9b7110d2652a18377bdd09094704188399bef0f8 (diff) | |
download | dartboat-d31b800c35595428790905b21b771bbc187488ab.tar.gz dartboat-d31b800c35595428790905b21b771bbc187488ab.tar.xz |
web: fix undo state carrying over into next match
Diffstat (limited to 'web/static')
-rw-r--r-- | web/static/index.html | 2 | ||||
-rw-r--r-- | web/static/style.css | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/web/static/index.html b/web/static/index.html index d2d6bb4..dbd2b6e 100644 --- a/web/static/index.html +++ b/web/static/index.html @@ -44,7 +44,7 @@ <div onclick="promptHandle('append', 0)" class="key num">0</div> <div onclick="promptHandle('submit')" class="key ok">OK</div> <div onclick="promptHandle('undo')" class="key" id="key_undo">UNDO</div> - <div onclick="promptHandle('submit_rem')" class="key">REM</div> + <div onclick="promptHandle('submit_rem')" class="key">REMAINING</div> </div> <div id="settings-bar"> <div>dartboat™</div> diff --git a/web/static/style.css b/web/static/style.css index b644439..397d5f8 100644 --- a/web/static/style.css +++ b/web/static/style.css @@ -40,7 +40,7 @@ div#oi { visibility: hidden; background-color: #6c0d0d; - font-size: 2em; + font-size: 3em; height: 1.2em; width: 3ch; @@ -190,6 +190,8 @@ div.key.num { div.key.ok { grid-row-end: span 2; + + font-size: 2.5em; } div#settings-bar { |