summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2020-04-06 13:17:04 +0200
committerRicardo Wurmus <rekado@elephly.net>2020-04-06 13:17:04 +0200
commit0b998be5efb5df20acff0c336170e18cb94f84fe (patch)
treee4f4cb2ebbdf668237557f888c9d5001e24197c8
parent28ad068500b86805db16208a7e49c185c6a843aa (diff)
view: issue-page: Break up columns sooner when screens are narrow.
-rw-r--r--mumi/web/view/html.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/mumi/web/view/html.scm b/mumi/web/view/html.scm
index d7b04d0..c938772 100644
--- a/mumi/web/view/html.scm
+++ b/mumi/web/view/html.scm
@@ -343,7 +343,7 @@ some examples.")
'((div
(@ (class "row event"))
(div
- (@ (class "col-md-11 offset-md-1 text-center"))
+ (@ (class "col-11 offset-1 text-center"))
(div (@ (class "badge badge-primary closed")) "Closed"))))
'())))
(layout
@@ -363,7 +363,7 @@ some examples.")
,text)))
(_ '()))
(div
- (@ (class "title col-md-12"))
+ (@ (class "title col-12"))
(h1 ,(bug-subject* bug))
(span (@ (class "details"))
,(status-tag bug)
@@ -422,7 +422,7 @@ some examples.")
'())))
(div (@ (class "row"))
(div
- (@ (class "conversation col-md-9"))
+ (@ (class "conversation col-lg-9"))
,(let ((msgs (filter (lambda (msg)
;; Ignore messages
;; without body, and
@@ -493,7 +493,7 @@ supported. To comment on this conversation "
(number->string id) "@" (%config 'debbugs-domain)))))))))))
(div
- (@ (class "info col-md-3"))
+ (@ (class "info col-lg-3"))
(dl
(@ (class "stat"))
,@(let ((num (length parties)))