Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ const MessageDetailCard = ({ message }: Props) => {
<div className="h-[22px]" />
</>
)}
<p className="text-[16px] font-bold">{message.userName}</p>
<p className="text-[16px] font-bold px-[12px]">{message.userName}</p>
<div className="h-[14px]" />
<div className="w-full h-[calc(100vh-54px-20px-32px-42px-12px-256px-22px-24px-14px-12px-38px-54px)] overflow-y-auto">
<div className="w-full px-[12px] h-[calc(100vh-54px-20px-32px-42px-12px-256px-22px-24px-14px-12px-38px-54px)] overflow-y-auto">
<p className="text-[14px]">{message.text}</p>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,7 @@ const PasswordInputStep = ({ password, setPassword }: Props) => {
<div className="h-[16px]" />
<div className="w-full py-[22px] px-[18px] rounded-[16px] bg-[#F8F8F8] text-[14px] text-[#A1A1A1] flex flex-col">
<p>* 캡슐 파묻기 시에 사용될 비밀번호입니다.</p>
<p>
* 비밀번호 분실 시 재설정이{" "}
<span className="font-bold text-error">불가능</span>합니다.
</p>
<p>* 비밀번호 분실 시 재설정이 불가능합니다.</p>
</div>
</div>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const SelectDateStep = ({ selectDate, setSelectDate }: Props) => {
}}
>
<Margin H="54px" />
<StepHeader text={`캡슐을 \n$오픈할 일시$를 선택해 주세요.`} />
<StepHeader text={`캡슐을 $오픈할 일시$를\n 선택해 주세요.`} />
<Margin H="54px" />
<PickerAccordion selected={selectDate} setSelected={setSelectDate} />
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const TextInputStep = ({ text, setText }: Props) => {
<CustomTextArea
value={text}
setValue={setText}
placeholder="캡슐에 이름을 붙여주세요."
placeholder="텍스트를 입력해 주세요."
mountFocus
/>
</div>
Expand Down
Binary file modified src/assets/images/capsule-create-modal-illust.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/images/undiggedImage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/Modals/MessageCreateCompleteModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const MessageCreateCompleteModal = ({ hideModal, onClick }: Props) => (
<p className="text-[#9A9A9A] text-center text-[14px]">
소중한 추억이 쌓이고 있어요!
</p>
<img src={imageSrc} className="w-[158px]" />
<img src={imageSrc} className="w-[158px] mt-[-32px]" />
</div>
</OneButtonModal>
);
Expand Down
Loading