diff --git a/resources/views/livewire-tables/components/table/td/plain.blade.php b/resources/views/livewire-tables/components/table/td/plain.blade.php
index c83b047..24baa5a 100644
--- a/resources/views/livewire-tables/components/table/td/plain.blade.php
+++ b/resources/views/livewire-tables/components/table/td/plain.blade.php
@@ -15,7 +15,7 @@
@elseif ($component->isBootstrap())
merge($customAttributes)
- ->class(['ps-4' => $customAttributes['default'] ?? true])
+ ->class(['w-1 pe-0' => $customAttributes['default'] ?? true])
->class(['d-none' => $column && $column->shouldCollapseAlways()])
->class(['d-none d-md-table-cell' => $column && $column->shouldCollapseOnMobile()])
->class(['d-none d-lg-table-cell' => $column && $column->shouldCollapseOnTablet()])
diff --git a/resources/views/livewire-tables/components/table/th/plain.blade.php b/resources/views/livewire-tables/components/table/th/plain.blade.php
index 8e3be43..4c8c92d 100644
--- a/resources/views/livewire-tables/components/table/th/plain.blade.php
+++ b/resources/views/livewire-tables/components/table/th/plain.blade.php
@@ -4,7 +4,8 @@
| merge($customAttributes)->class([
'laravel-livewire-tables-reorderingMinimised',
- 'w-1'
+ 'w-1',
+ 'pe-0',
]) }}
@if($hideUntilReorder) :class="!reorderDisplayColumn && 'w-0 p-0 hidden'" @endif
>
|