Skip to content

Commit

Permalink
refactor: 정렬 아이콘 배경 색 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
khj0426 committed Nov 29, 2023
1 parent 580652c commit bf295e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ const SortDropDown = ({
}: SortDropDownProps) => {
return (
<div className="dropdown-container grow justify-end">
<div className="dropdown">
<div className="dropdown ">
<IconButton
tabIndex={0}
text="정렬"
className="
flex h-6 w-14 gap-0.5 rounded-none border-2 border-gray-200 p-0 text-xs dark:bg-main-gray dark:text-white"
flex h-6 w-14 gap-0.5 rounded-none border-2 border-gray-200 bg-white p-0 text-xs dark:bg-main-gray dark:text-white"
>
<ReviewAlignIcon className="fill-black dark:fill-white" />
</IconButton>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/ReviewReplyPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const ReviewReplyPage = () => {
const { submitStatus, status: reviewStatus } = state

return (
<div className="flex h-screen flex-col items-center bg-main-ivory dark:bg-main-red-100">
<div className="flex h-screen flex-col items-center overflow-auto bg-main-ivory dark:bg-main-red-100">
<Header />
{reviewStatus === 'PROCEEDING' &&
(!submitStatus ? <ReviewReplyStart /> : <ReviewReplyEdit />)}
Expand Down

0 comments on commit bf295e8

Please sign in to comment.