use thicker strikethrough on paused duration
This commit is contained in:
parent
17dc404ba3
commit
3ca4dcc807
|
@ -72,7 +72,7 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||||
|
|
||||||
durationDisplay.textContent = duration.toLocaleString() + 's';
|
durationDisplay.textContent = duration.toLocaleString() + 's';
|
||||||
if (paused) {
|
if (paused) {
|
||||||
durationDisplay.style.textDecoration = "line-through";
|
durationDisplay.style.textDecoration = "line-through 2px";
|
||||||
stopTimer();
|
stopTimer();
|
||||||
} else {
|
} else {
|
||||||
durationDisplay.style.textDecoration = "";
|
durationDisplay.style.textDecoration = "";
|
||||||
|
|
Loading…
Reference in a new issue