From f96c7ee04c83efe5f647ae2061c9b8caef355b0c Mon Sep 17 00:00:00 2001 From: idylls Date: Sun, 29 Jan 2023 22:05:18 -0500 Subject: [PATCH] Display logs with grid instead of flex --- css/style.scss | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/css/style.scss b/css/style.scss index 2b48f8a..b8a15b8 100644 --- a/css/style.scss +++ b/css/style.scss @@ -173,10 +173,9 @@ table.work { .logs { padding: 0 1rem; - display: flex; - flex-direction: row; - flex-wrap: wrap; - justify-content: space-evenly; + display: grid; + grid-template-columns: repeat(auto-fill, minmax(500px, 1fr)); + justify-items: center; gap: 20px; .log {