From 77c6c5f73dc3445f4e1225a4ff4751f88c98a41c Mon Sep 17 00:00:00 2001 From: idevakk <219866223+idevakk@users.noreply.github.com> Date: Wed, 10 Dec 2025 03:06:04 -0800 Subject: [PATCH] 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 --- resources/views/livewire/blog.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/livewire/blog.blade.php b/resources/views/livewire/blog.blade.php index 4156d5c..4987663 100644 --- a/resources/views/livewire/blog.blade.php +++ b/resources/views/livewire/blog.blade.php @@ -25,7 +25,7 @@ echo $adsSettings->two ?? ''; @endphp -
+
{!! $postDetail->content !!}