Skip to content

Commit

Permalink
Tidy up
Browse files Browse the repository at this point in the history
  • Loading branch information
darrencoutts118 committed Jul 2, 2024
1 parent 5391658 commit 9c09a81
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion resources/views/components/field-error.blade.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<p class="text-sm text-red-600 dark:text-red-400">{{ $error }}</p>
<p class="text-red-600 dark:text-red-400">{{ $error }}</p>
2 changes: 1 addition & 1 deletion resources/views/components/field-group.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// $id = $childComponents->first()->id;
@endphp

<div class="col-span-full space-y-2">
<div class="space-y-2">
<x-appkit::label for="{{ $id }}" :$label />

<div>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/help-text.blade.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<p class="text-gray-500 text-sm dark:text-gray-400">{{ $help }}</p>
<p class="text-gray-500 dark:text-gray-400">{{ $help }}</p>
2 changes: 1 addition & 1 deletion resources/views/components/label.blade.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<label for="{{ $for }}" class="font-medium text-sm text-gray-900 leading-6 dark:text-white">{{ $label }}</label>
<label for="{{ $for }}" class="font-medium text-gray-900 leading-6 dark:text-white" {{ $attributes }}>{{ $label }}</label>

0 comments on commit 9c09a81

Please sign in to comment.