From c2773e1ec22417c962f4016a2fa7b5248eb1c5a6 Mon Sep 17 00:00:00 2001 From: NASYA KHAIRA ADINIA Date: Thu, 11 Jun 2026 03:45:45 +0700 Subject: [PATCH] fix: correct CSS flex-direction property name to fix page layout flow --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 26b7d5c..c1ce1a9 100644 --- a/index.php +++ b/index.php @@ -87,7 +87,7 @@ } /* ── LAYOUT ── */ - .page { position: relative; z-index: 1; min-height: 100vh; display: flex; flex-col: column; } + .page { position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; } /* ── NAVBAR ── */ .nav {