Skip to content

Commit

Permalink
style: Email Input margin 변경, 아이콘 추가 #80
Browse files Browse the repository at this point in the history
  • Loading branch information
imdaxsz committed Aug 28, 2023
1 parent 9522700 commit 0d346be
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/features/common/routes/HelpDesk.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import styled from "@emotion/styled";
import { Mail } from "iconoir-react";
import { useState } from "react";

import Button from "@/components/Button";
Expand Down Expand Up @@ -77,6 +78,7 @@ export default function HelpDesk() {
onChange={handlerEmailChange}
warn={emailError}
message="이메일을 입력해 주세요."
icon={<Mail width={20} height={20} />}
required
/>
<InquiryContentTextarea
Expand Down Expand Up @@ -159,7 +161,7 @@ const FormArea = styled.div`

const EmailTextInput = styled(TextInput)`
width: 100%;
margin: 15px 0;
margin: 8px 0 15px;
& > input {
border-radius: 12px;
}
Expand Down

0 comments on commit 0d346be

Please sign in to comment.