Skip to content

Commit 13a7536

Browse files
author
Itamar Junior
committed
fix: add rounded top-left corner to first day of the week in budget calendar
1 parent 6fbc369 commit 13a7536

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/views/livewire/company/budget-calendar.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ class="mx-auto grid max-w-3xl grid-cols-1 gap-x-8 gap-y-16 px-4 py-16 sm:grid-co
123123
class="isolate mt-2 grid grid-cols-7 gap-px rounded-lg bg-gray-200 text-sm shadow ring-1 ring-gray-200">
124124
{{-- Padding for first week --}}
125125
@for ($i = 1; $i < $firstDayOfWeek; $i++)
126-
<div class="bg-gray-50 py-1.5"></div>
126+
<div class="bg-gray-50 {{ $i == 1 ? 'rounded-tl-lg' : '' }} py-1.5"></div>
127127
@endfor
128128

129129
{{-- Loop over days in month --}}

0 commit comments

Comments
 (0)