From 552991be7aba8964897f4449fd13d344834a90e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=84=9D=EC=B0=AC=20=EC=9C=A4?= <ysc0731@ajou.ac.kr> Date: Mon, 9 Dec 2024 16:00:47 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20Accessibility=20=ED=96=A5=EC=83=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/icons/MiniScheduleIcon.jsx | 2 +- src/pages/HomePage.jsx | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/icons/MiniScheduleIcon.jsx b/src/components/icons/MiniScheduleIcon.jsx index 9d2662d..e5851e9 100644 --- a/src/components/icons/MiniScheduleIcon.jsx +++ b/src/components/icons/MiniScheduleIcon.jsx @@ -15,7 +15,7 @@ const dummyScheduleStatus = [ const MiniScheduleIcon = ({ scheduleStatus = dummyScheduleStatus }) => { return ( - <div className="flex flex-col items-center justify-center h-40 p-4 bg-white rounded-lg shadow-lg w-60"> + <div className="flex flex-col items-center justify-center h-40 p-4 bg-white border rounded-lg shadow-lg border-grayscale-300 w-60"> {/* 헤더 */} <div className="mb-2 text-gray-300 label-1"> <span className="text-secondary-500">고정</span> /{" "} diff --git a/src/pages/HomePage.jsx b/src/pages/HomePage.jsx index e6252be..6465327 100644 --- a/src/pages/HomePage.jsx +++ b/src/pages/HomePage.jsx @@ -44,16 +44,19 @@ const HomePage = () => { component: ( <div className="flex gap-2"> <Button + aria-label="button-example1" size="icon" theme="purple" icon={<LogoIcon fillColor="#ffffff" />} /> <Button + aria-label="button-example2" size="icon" theme="indigo" icon={<LogoIcon fillColor="#ffffff" />} /> <Button + aria-label="button-example3" size="icon" theme="mix" icon={<LogoIcon fillColor="#ffffff" />} -- GitLab