diff options
author | Christopher Baines <mail@cbaines.net> | 2019-03-17 23:41:11 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-03-17 23:41:11 +0000 |
commit | bfa7c26f039a14b32318518583671429e0255124 (patch) | |
tree | 41a2230b10b67bfbf2a602a43c0976a9d6e503ff /guix-data-service | |
parent | 5a936ae1010abff8436cc70492c240c365f02994 (diff) | |
download | data-service-bfa7c26f039a14b32318518583671429e0255124.tar data-service-bfa7c26f039a14b32318518583671429e0255124.tar.gz |
Improve the form styling on the index page
Diffstat (limited to 'guix-data-service')
-rw-r--r-- | guix-data-service/web/view/html.scm | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/guix-data-service/web/view/html.scm b/guix-data-service/web/view/html.scm index e320648..d19ac37 100644 --- a/guix-data-service/web/view/html.scm +++ b/guix-data-service/web/view/html.scm @@ -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"))))) |