diff options
-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* |