diff options
author | Christopher Baines <mail@cbaines.net> | 2019-08-05 11:36:57 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-08-05 11:36:57 +0100 |
commit | 8f7398b8144db5fe58f96416df0983b8f115ac18 (patch) | |
tree | 2f5f12910150cd46e6a24f1ea728935dab68bcce /guix-data-service | |
parent | 002ae7685cc053cdce56c76e74c656a224180e6c (diff) | |
download | data-service-8f7398b8144db5fe58f96416df0983b8f115ac18.tar data-service-8f7398b8144db5fe58f96416df0983b8f115ac18.tar.gz |
Tweak the branch table layout
Diffstat (limited to 'guix-data-service')
-rw-r--r-- | guix-data-service/web/view/html.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/guix-data-service/web/view/html.scm b/guix-data-service/web/view/html.scm index 4b1129f..647a07e 100644 --- a/guix-data-service/web/view/html.scm +++ b/guix-data-service/web/view/html.scm @@ -789,13 +789,13 @@ (div (@ (class "col-md-12")) (table - (@ (class "table table-responsive") + (@ (class "table") (style "table-layout: fixed;")) (thead (tr - (th (@ (class "col-md-3")) "Date") - (th (@ (class "col-md-7")) "Commit") - (th (@ (class "col-md-1"))))) + (th (@ (class "col-sm-3")) "Date") + (th (@ (class "col-sm-7")) "Commit") + (th (@ (class "col-sm-1"))))) (tbody ,@(map (match-lambda* |