From 42e0bbded7cd67fef0194aa3e96058541b9e8d06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=80=EC=A7=80?= <103625348+eunji-0623@users.noreply.github.com> Date: Fri, 31 May 2024 15:16:56 +0900 Subject: [PATCH] =?UTF-8?q?[Feat]=20DashboardList=20=EB=B0=98=EC=9D=91?= =?UTF-8?q?=ED=98=95=20=EB=94=94=EC=9E=90=EC=9D=B8=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DashboardList/DashboardList.module.scss | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/pages/myDashboard/components/DashboardList/DashboardList.module.scss b/src/pages/myDashboard/components/DashboardList/DashboardList.module.scss index faebb89..80b47bc 100644 --- a/src/pages/myDashboard/components/DashboardList/DashboardList.module.scss +++ b/src/pages/myDashboard/components/DashboardList/DashboardList.module.scss @@ -16,3 +16,27 @@ align-items: center; gap: 13px; } + +@media screen and (max-width: 1024px) { + .container { + width: 504px; + } + + .dashboardList { + grid-template-columns: 1fr 1fr; + grid-template-rows: 68px 68px 68px; + gap: 10px; + } +} + +@media screen and (max-width: 768px) { + .container { + width: 260px; + } + + .dashboardList { + grid-template-columns: 1fr; + grid-template-rows: repeat(6, 58px); + gap: 8px; + } +}