We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6db95b3 commit 08b2404Copy full SHA for 08b2404
resources/views/components/grid-section.blade.php
@@ -1,16 +1,16 @@
1
@props(['title','description'])
2
-<x-filament::grid @class(["pt-6 gap-4 wirement-breeze-grid-section"]) {{ $attributes }}>
+<div class="grid grid-cols-1 md:grid-cols-2 gap-6 pt-6 wirement-breeze-grid-section" {{ $attributes }}>
3
4
- <x-filament::grid.column>
+ <div>
5
<h3 @class(['text-lg font-medium wirement-breeze-grid-title'])>{{$title}}</h3>
6
7
<p @class(['mt-1 text-sm text-gray-500 wirement-breeze-grid-description'])>
8
{{$description}}
9
</p>
10
- </x-filament::grid.column>
+ </div>
11
12
13
{{ $slot }}
14
15
16
-</x-filament::grid>
+</div>
0 commit comments