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:
idevakk
2025-12-10 03:06:04 -08:00
parent 29b20a3856
commit 77c6c5f73d

View File

@@ -25,7 +25,7 @@
echo $adsSettings->two ?? ''; echo $adsSettings->two ?? '';
@endphp @endphp
</div> </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> <flux:text>{!! $postDetail->content !!}</flux:text>
</div> </div>
<div class="mt-3"></div> <div class="mt-3"></div>