Skip to content

Commit

Permalink
Ensure there is no unnecessary white space
Browse files Browse the repository at this point in the history
  • Loading branch information
aerni committed May 23, 2024
1 parent fa5030a commit 76f0058
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/views/default/fields/checkboxes.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<fieldset class="space-y-3">
<fieldset class="flex flex-col gap-y-3">
<div>
@formView('messages.legend')

Expand Down
2 changes: 1 addition & 1 deletion resources/views/default/fields/radio.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<fieldset class="space-y-3">
<fieldset class="flex flex-col gap-y-3">
<div>
@formView('messages.legend')

Expand Down
2 changes: 1 addition & 1 deletion resources/views/default/layouts/field.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div
x-show="showField('{{ $field->handle }}')"
wire:key="{{ $field->id }}"
class="space-y-2 col-span-1
class="flex flex-col gap-y-2 col-span-1
{{ $field->width === 25 ? 'md:col-span-3' : '' }}
{{ $field->width === 33 ? 'md:col-span-4' : '' }}
{{ $field->width === 50 ? 'md:col-span-6' : '' }}
Expand Down

0 comments on commit 76f0058

Please sign in to comment.