diff options
author | Christopher Baines <mail@cbaines.net> | 2019-12-16 20:15:11 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-12-16 20:15:11 +0000 |
commit | 01723389322d80f57b1368334583936e5c43cc14 (patch) | |
tree | 1b9e3ffd9987e10d4ea96f8a0f389ac2cc9c0cc7 | |
parent | e6b20746beeb9574f708f0e5812d1aede10c00bc (diff) | |
download | data-service-01723389322d80f57b1368334583936e5c43cc14.tar data-service-01723389322d80f57b1368334583936e5c43cc14.tar.gz |
Add a small bottom margin to the build status span
So it displays better when there are items below it.
-rw-r--r-- | guix-data-service/web/html-utils.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix-data-service/web/html-utils.scm b/guix-data-service/web/html-utils.scm index 411f59f..6286b8f 100644 --- a/guix-data-service/web/html-utils.scm +++ b/guix-data-service/web/html-utils.scm @@ -80,7 +80,7 @@ ("canceled" . "default") ("" . "default")) status))) - (style "display: inline-block; font-size: 1.2em; margin-top: 0.4em;")) + (style "display: inline-block; font-size: 1.2em; margin-top: 0.4em; margin-bottom: 0.4em;")) ,(build-status-value->display-string status))) (define (build-status-alist->build-icon status) |