From 568548153642e27144910bb8b342465c6f76344a Mon Sep 17 00:00:00 2001 From: Pk11 Date: Tue, 22 Nov 2022 18:45:28 -0600 Subject: [PATCH] Add legacy flex --- index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index d2eac88..aa56ba8 100644 --- a/index.php +++ b/index.php @@ -80,8 +80,8 @@ .inline-list { list-style: none; margin-top: 0; } .inline-list li { display: inline-block; } .grid-wrapper { display: grid; grid-template-columns: repeat(auto-fill, 100px); } - .d-flex { display: flex; } - .flex-fill { flex: 1 1 auto; } + .d-flex { display: -webkit-flex; display: -moz-flex; display: flex; } + .flex-fill { -webkit-flex: 1 1 auto; -moz-flex: 1 1 auto; flex: 1 1 auto; }