Skip to content

Commit

Permalink
Merge pull request #246 from FinalDoubleTen/FE-100--feat/DesignQA
Browse files Browse the repository at this point in the history
Fe 100  feat/design qa
  • Loading branch information
suehub authored Jan 23, 2024
2 parents 891905d + 7cccbb7 commit 5f1130d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Review/ReviewButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const ReviewButton = (props: ButtonProps) => {

<ButtonPrimary
onClick={onClick}
className="flex items-center justify-center"
className="flex h-[56px] items-center justify-center"
disabled={
isRatingValid === false ||
(isContentValid === false && isKeywordsValid === false)
Expand Down
6 changes: 4 additions & 2 deletions src/components/common/modal/children/MyAlert.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,12 @@ const MyAlert: React.FC<MyAlertProps> = ({ title, content }) => {
))}
</div>
<div className="flex gap-3 ">
<ButtonWhite onClick={closeModal} className="text-sm">
<ButtonWhite onClick={closeModal} className="h-[48px] text-sm">
취소
</ButtonWhite>
<ButtonPrimary onClick={handleClickButton} className="text-sm">
<ButtonPrimary
onClick={handleClickButton}
className="h-[48px] text-sm ">
확인
</ButtonPrimary>
</div>
Expand Down

0 comments on commit 5f1130d

Please sign in to comment.