fix(blog): correct post content layout from horizontal to vertical stacking
Remove flex items-center from blog post content container that was causing content elements to display horizontally instead of their natural vertical flow. This ensures proper text and element stacking within individual blog posts. Fixes layout issue in resources/views/livewire/blog.blade.php
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
echo $adsSettings->two ?? '';
|
||||
@endphp
|
||||
</div>
|
||||
<div class="flex w-full items-center justify-center px-4 py-2 sm:px-6">
|
||||
<div class="w-full px-4 py-2 sm:px-6">
|
||||
<flux:text>{!! $postDetail->content !!}</flux:text>
|
||||
</div>
|
||||
<div class="mt-3"></div>
|
||||
|
||||
Reference in New Issue
Block a user