Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/dist/custom-fields.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion resources/views/filament/forms/type-field.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
class="h-4 w-4 text-gray-400 dark:text-gray-500 absolute"
:aria-label="$label"
/>
<span style="margin-left: 1.2rem">{{ $label }}</span>
<span style="margin-inline-start: 1.2rem">{{ $label }}</span>
</div>
10 changes: 5 additions & 5 deletions resources/views/livewire/manage-custom-field-width.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ class="relative"
wire:click="$parent.setWidth(fieldId, width)"
class="h-6 flex-1 cursor-pointer bg-gray-200 hover:bg-gray-300 transition-colors"
:class="{
'rounded-l-md': index === 0,
'rounded-r-md': index === widths.length - 1
'rounded-s-md': index === 0,
'rounded-e-md': index === widths.length - 1
}"
>
<div
class="h-full w-full border-gray-300 transition-colors duration-200"
:class="{
'bg-primary-600 hover:bg-primary-600/80': isSelected(width),
'rounded-l-md': index === 0 && isSelected(width),
'rounded-r-md': index === widths.length - 1 && isSelected(width),
'border-r': index !== widths.length - 1
'rounded-s-md': index === 0 && isSelected(width),
'rounded-e-md': index === widths.length - 1 && isSelected(width),
'border-s': index !== widths.length - 1
}"
></div>
</div>
Expand Down