From ab41975c9eec0fa66f54f397e3507fdddc6d57ea Mon Sep 17 00:00:00 2001 From: nangkyeonglim Date: Thu, 5 Oct 2023 15:38:28 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20=EA=B8=80=20=ED=85=8C=EC=9D=B4?= =?UTF-8?q?=EB=B8=94=EC=97=90=20=EB=B0=9C=ED=96=89=ED=95=9C=20=EB=B8=94?= =?UTF-8?q?=EB=A1=9C=EA=B7=B8=20=ED=94=8C=EB=9E=AB=ED=8F=BC=20=EC=97=AC?= =?UTF-8?q?=EB=B6=80=EC=97=90=20=EB=94=B0=EB=9D=BC=20=EB=86=92=EC=9D=B4?= =?UTF-8?q?=EA=B0=80=20=EB=8B=A4=EB=A5=B8=20=ED=98=84=EC=83=81=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/HomeTable/HomeTable.tsx | 6 +++++- frontend/src/components/WritingTable/WritingTable.tsx | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/HomeTable/HomeTable.tsx b/frontend/src/components/HomeTable/HomeTable.tsx index 1e9511582..213478d91 100644 --- a/frontend/src/components/HomeTable/HomeTable.tsx +++ b/frontend/src/components/HomeTable/HomeTable.tsx @@ -99,6 +99,10 @@ const S = { color: ${({ theme }) => theme.color.gray8}; } + tr { + height: 4.2rem; + } + td { .publishedTo { display: flex; @@ -108,7 +112,7 @@ const S = { th, td { - padding: 1.1rem; + padding: 0 1rem; border: 1px solid ${({ theme }) => theme.color.gray5}; } diff --git a/frontend/src/components/WritingTable/WritingTable.tsx b/frontend/src/components/WritingTable/WritingTable.tsx index 750fedee2..9a5502c8c 100644 --- a/frontend/src/components/WritingTable/WritingTable.tsx +++ b/frontend/src/components/WritingTable/WritingTable.tsx @@ -74,6 +74,10 @@ const S = { color: ${({ theme }) => theme.color.gray8}; } + tr { + height: 4.2rem; + } + td { .publishedTo { display: flex; @@ -83,7 +87,7 @@ const S = { th, td { - padding: 1.1rem; + padding: 0 1rem; border: 1px solid ${({ theme }) => theme.color.gray5}; }