diff options
Diffstat (limited to 'scratch/habit-screens')
-rw-r--r-- | scratch/habit-screens/client/src/Habits.elm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scratch/habit-screens/client/src/Habits.elm b/scratch/habit-screens/client/src/Habits.elm index 6e8347187769..c1959e818c36 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" |