diff options
-rw-r--r-- | design/design.css | 1 | ||||
-rw-r--r-- | src/Update/Update.elm | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/design/design.css b/design/design.css index db19feb..7d9cd39 100644 --- a/design/design.css +++ b/design/design.css @@ -119,6 +119,7 @@ .timer > .time { width: 200px; + letter-spacing: 2px; cursor: text; position: relative; border-radius: 0px; diff --git a/src/Update/Update.elm b/src/Update/Update.elm index a556e36..2f4d7a4 100644 --- a/src/Update/Update.elm +++ b/src/Update/Update.elm @@ -107,7 +107,9 @@ validEdition model = Just edition -> if isEmpty edition then - model + { model + | edition <- Nothing + } else let timerAction = case edition.kind of |