From a156fc4e0b9769983562290f03e21cc4e59664cc Mon Sep 17 00:00:00 2001 From: eikek Date: Sat, 21 May 2022 18:52:42 +0200 Subject: [PATCH] Show dashboard box headers in bold not italic Closes: #1531 --- modules/webapp/src/main/elm/Comp/BoxView.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/webapp/src/main/elm/Comp/BoxView.elm b/modules/webapp/src/main/elm/Comp/BoxView.elm index 9e508972..f2c3a3e2 100644 --- a/modules/webapp/src/main/elm/Comp/BoxView.elm +++ b/modules/webapp/src/main/elm/Comp/BoxView.elm @@ -195,7 +195,7 @@ boxHeader model = [ class "flex flex-row py-1 bg-blue-50 dark:bg-slate-700 rounded-t" , classList [ ( "hidden", not model.box.decoration || model.box.name == "" ) ] ] - [ div [ class "flex text-lg tracking-medium italic px-2" ] + [ div [ class "flex text-lg tracking-medium font-semibold px-2" ] [ text model.box.name ] ]