You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -189,8 +189,12 @@ footerView : Model -> Html Msg
189
189
footerView model =
190
190
section [ class "container", class "footer"]
191
191
[ div [ class "round-wrapper"]
192
-
[ p [][ text <|String.fromInt (model.pomodoroState |>Maybe.map (\state -> state.currentWorkRoundNumber)|>Maybe.withDefault 1)++"/"++String.fromInt model.config.maxRoundNumber ]
193
-
, p [ class "text-button", title "Reset current round", onClick Reset][ text "Reset"]
192
+
[ p [ class "total-rounds"][ text <|String.fromInt (model.pomodoroState |>Maybe.map (\state -> state.currentWorkRoundNumber)|>Maybe.withDefault 1)++"/"++String.fromInt model.config.maxRoundNumber ]
193
+
, div [ class "reset-rounds"]
194
+
[ p [ class "text-button", title "Reset current round", onClick <|ResetCurrentRound][ text "Reset round"]
195
+
, text " or "
196
+
, p [ class "text-button", title "Reset the whole session", onClick <|ResetEntireSession][ text "session"]
197
+
]
194
198
]
195
199
, div [ class "icon-group", style "position""absolute", style "right""0px"]
196
200
[ div [ class "icon-wrapper", class "icon-wrapper--double--left", title "Skip the current round", onClick SkipCurrentRound]
0 commit comments