From 2290aac2a8a73ad14b0443bf35d4f158363a1f82 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Sun, 11 Oct 2020 16:47:31 +0100 Subject: [PATCH] Tweak styles Add spacing to help the app breathe. --- scratch/habit-screens/client/src/Habits.elm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scratch/habit-screens/client/src/Habits.elm b/scratch/habit-screens/client/src/Habits.elm index 6e8347187..c1959e818 100644 --- a/scratch/habit-screens/client/src/Habits.elm +++ b/scratch/habit-screens/client/src/Habits.elm @@ -316,7 +316,7 @@ render { today, visibleDayOfWeek, completed, includeMorning, includeEvening } = ] ] , if todaysWeekday == visibleWeekday then - p [ class "text-center" ] + p [ class "text-center pt-1 pb-4" ] [ let t : Int t = @@ -348,7 +348,7 @@ render { today, visibleDayOfWeek, completed, includeMorning, includeEvening } = State.ClearAll ) , Utils.class - [ Always "ml-10" + [ Always "ml-10 px-3" , If (Set.size completed == 0) "text-gray-500 cursor-not-allowed" "text-red-500 underline cursor-pointer"