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

Commit

Permalink
[FE] refactor: 글 테이블에 발행한 블로그 플랫폼 여부에 따라 높이가 다른 현상 수정 (#535)
Browse files Browse the repository at this point in the history
refactor: 글 테이블에 발행한 블로그 플랫폼 여부에 따라 높이가 다른 현상 수정
  • Loading branch information
nangkyeonglim authored and echo724 committed Oct 6, 2023
1 parent d99de5f commit e9abdba
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
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

0 comments on commit e9abdba

Please sign in to comment.