File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
ui/app/src/Utils/DateTimePicker Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -171,8 +171,11 @@ viewDay dateTimePicker justViewTime day =
171171viewTimePicker : DateTimePicker -> StartOrEnd -> Html Msg
172172viewTimePicker dateTimePicker startOrEnd =
173173 div
174- [ class " row align-items-center mb-2 gx-3" ] -- Grid row with spacing
175- [ div [ class " col-2 small fw-bold" ] -- Label column
174+ [ class " row align-items-center mb-2 gx-3" ]
175+ -- Grid row with spacing
176+ [ div [ class " col-2 small fw-bold" ]
177+ -- Label column
178+ -- TODO - responsiveness not great, can't see the time input values on my phone...
176179 [ text
177180 ( case startOrEnd of
178181 Start ->
@@ -259,7 +262,8 @@ viewTimePicker dateTimePicker startOrEnd =
259262 [ i [ class " fa fa-angle-down" ] [] ]
260263 ]
261264 ]
262- , div [ class " col-6" ] -- Resulting datetime column
265+ , div [ class " col-6" ]
266+ -- Resulting datetime column
263267 [ text
264268 ( let
265269 toString_ : Maybe Posix -> Maybe Posix -> String
You can’t perform that action at this time.
0 commit comments