We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fb585bc + 0307ddb commit 669f43bCopy full SHA for 669f43b
src/components/card/Profile.tsx
@@ -32,7 +32,7 @@ export default function ProfileCard() {
32
const file = event.target.files[0];
33
34
if (file.size > MAX_IMAGE_SIZE) {
35
- toast.error("3.5MB 이하의 이미지만 업로드할 수 있습니다.");
+ toast.error("3.5MB 이하만 등록 가능합니다.");
36
return;
37
}
38
src/styles/globals.css
@@ -18,7 +18,12 @@
18
19
20
.Toastify__toast {
21
- width: 250px !important;
+ width: fit-content !important;
22
+ max-width: 380px !important;
23
+ white-space: normal !important;
24
+ text-align: center !important;
25
+ margin: 0 auto !important;
26
+ word-break: keep-all; /* 단어 단위로 줄바꿈 */
27
border-radius: 16px;
28
background-color: #f3f0ff !important;
29
padding: 14px 18px;
0 commit comments