Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GGFE-266] 프로필 이미지 수정 안내 메시지 추가 #1020

Merged
Merged
Show file tree
Hide file tree
Changes from 4 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
4 changes: 2 additions & 2 deletions components/modal/store/inventory/ProfileImageModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ import useUploadImg from 'hooks/useUploadImg';
import styles from 'styles/modal/store/InventoryModal.module.scss';
import { ItemCautionContainer } from './ItemCautionContainer';

// TODO : 주의사항 문구 확정 필요
const cautions = [
'변경한 프로필 이미지는 취소할 수 없습니다.',
'프로필 이미지는 50KB 이하의 jpg 파일만 업로드 가능합니다.', // api 명세에 따라 변경될 수 있음
'50KB 이하의 jpg 파일만 업로드 가능합니다.',
'결과 반영에는 최대 30분 정도 소요될 수 있습니다.',
'관리자의 판단 결과 부적절한 이미지는 삭제될 수 있습니다.',
];

Expand Down
5 changes: 3 additions & 2 deletions styles/modal/store/InventoryModal.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,9 @@
}
.list {
padding: 0 0 0.5rem 0.5rem;
list-style-position: inside;
list-style-type: '- ';
margin-left: 0.8rem;
word-break: keep-all;
list-style: '- ';
}
}

Expand Down