From 7d425de48d395e2f81a62efccbcacc734572bb18 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Sat, 10 Oct 2020 17:31:34 +0100 Subject: [PATCH] Tweak styles - Increase font size for header - Prefer a bulleted list - Reduce horizontal padding --- scratch/habit-screens/client/src/Habits.elm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scratch/habit-screens/client/src/Habits.elm b/scratch/habit-screens/client/src/Habits.elm index 644c54911..bf9e594cb 100644 --- a/scratch/habit-screens/client/src/Habits.elm +++ b/scratch/habit-screens/client/src/Habits.elm @@ -146,15 +146,15 @@ render { dayOfWeek, completed } = Just weekday -> div [ class "font-mono py-6 px-6" ] - [ h1 [ class "text-2xl text-center" ] [ text (weekdayName weekday) ] + [ h1 [ class "text-3xl text-center" ] [ text (weekdayName weekday) ] , ul [] (weekday |> habitsFor |> List.indexedMap (\i x -> - li [ class "text-xl" ] + li [ class "text-xl list-disc ml-6" ] [ button - [ class "py-5 px-6" + [ class "py-5 px-3" , tailwind [ ( "line-through" , Set.member i completed