Improve the form styling on the index page

This commit is contained in:
Christopher Baines 2019-03-17 23:41:11 +00:00
parent 5a936ae101
commit bfa7c26f03
Signed by: cbaines
GPG key ID: 5E28A33B0B84F577

View file

@ -112,20 +112,26 @@
(div
(@ (class "col-md-6"))
(div
(@ (class "form-group"))
(label (@ (for "base_commit"))
(@ (class "form-group form-group-lg"))
(label (@ (class "control-label")
(style "font-size: 18px;")
(for "base_commit"))
"Base commit")
(input (@ (type "text")
(class "form-control")
(style "font-family: monospace;")
(id "base_commit")
(name "base_commit")
(placeholder "base commit"))))
(div
(@ (class "form-group"))
(label (@ (for "target_commit"))
(@ (class "form-group form-group-lg"))
(label (@ (class "control-label")
(style "font-size: 18px;")
(for "target_commit"))
"Target commit")
(input (@ (type "text")
(class "form-control")
(style "font-family: monospace;")
(id "target_commit")
(name "target_commit")
(placeholder "target commit")))))