From 3483739e4920b689bc4070b98028ebb51f9fca05 Mon Sep 17 00:00:00 2001 From: leebeomjun Date: Wed, 19 Apr 2023 14:14:01 +0900 Subject: [PATCH] =?UTF-8?q?fix=20:=20=EC=B0=A8=ED=8A=B8=20=ED=81=AC?= =?UTF-8?q?=EA=B8=B0=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/resources/biz/layout/css/dashboard.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main/webapp/resources/biz/layout/css/dashboard.css b/src/main/webapp/resources/biz/layout/css/dashboard.css index 0fa79d58..5ab0a369 100644 --- a/src/main/webapp/resources/biz/layout/css/dashboard.css +++ b/src/main/webapp/resources/biz/layout/css/dashboard.css @@ -1,7 +1,8 @@ div.dashboard { display: grid; - grid-template-columns : repeat(auto-fill,minmax(9rem, 9rem)); - grid-template-rows: repeat(auto-fill,minmax(9rem, 9rem)); + grid-template-columns : repeat(auto-fill,minmax(125px, 125px)); + grid-template-rows: repeat(auto-fill,minmax(100px, 100px)); + justify-content: center; grid-auto-flow: row; grid-column-gap: 10px; grid-row-gap: 10px; @@ -12,7 +13,7 @@ div.dashboard { @media (max-width: 1300px) { div.dashboard { - grid-template-columns : repeat(8,minmax(9rem, 9rem)); + grid-template-columns : repeat(8,minmax(125px, 125px)); } }