Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

[FE] refactor: 글 테이블에 발행한 블로그 플랫폼 여부에 따라 높이가 다른 현상 수정 #535

Merged
merged 1 commit into from
Oct 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion frontend/src/components/HomeTable/HomeTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ const S = {
color: ${({ theme }) => theme.color.gray8};
}

tr {
height: 4.2rem;
}

td {
.publishedTo {
display: flex;
Expand All @@ -108,7 +112,7 @@ const S = {

th,
td {
padding: 1.1rem;
padding: 0 1rem;
border: 1px solid ${({ theme }) => theme.color.gray5};
}

Expand Down
6 changes: 5 additions & 1 deletion frontend/src/components/WritingTable/WritingTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ const S = {
color: ${({ theme }) => theme.color.gray8};
}

tr {
height: 4.2rem;
}

td {
.publishedTo {
display: flex;
Expand All @@ -83,7 +87,7 @@ const S = {

th,
td {
padding: 1.1rem;
padding: 0 1rem;
border: 1px solid ${({ theme }) => theme.color.gray5};
}

Expand Down
Loading