From e682d2e83aced535fa2abc4ae79cd0034a67be73 Mon Sep 17 00:00:00 2001 From: The Magician Date: Fri, 1 Dec 2023 15:09:30 +0000 Subject: [PATCH] Use Flexbox in test page --- test/index.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/index.html b/test/index.html index b4bb343..f972004 100644 --- a/test/index.html +++ b/test/index.html @@ -10,8 +10,10 @@ .center-grid { height: 100vh; - display: grid; - place-items: center; + + display: flex; + justify-content: space-evenly; + align-items: center; }