Skip to content

Commit 08b2404

Browse files
committed
refactor: replace Filament grid components with native HTML grid layout
1 parent 6db95b3 commit 08b2404

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
@props(['title','description'])
2-
<x-filament::grid @class(["pt-6 gap-4 wirement-breeze-grid-section"]) {{ $attributes }}>
2+
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 pt-6 wirement-breeze-grid-section" {{ $attributes }}>
33

4-
<x-filament::grid.column>
4+
<div>
55
<h3 @class(['text-lg font-medium wirement-breeze-grid-title'])>{{$title}}</h3>
66

77
<p @class(['mt-1 text-sm text-gray-500 wirement-breeze-grid-description'])>
88
{{$description}}
99
</p>
10-
</x-filament::grid.column>
10+
</div>
1111

12-
<x-filament::grid.column>
12+
<div>
1313
{{ $slot }}
14-
</x-filament::grid.column>
14+
</div>
1515

16-
</x-filament::grid>
16+
</div>

0 commit comments

Comments
 (0)