File tree Expand file tree Collapse file tree
(auth)/(navigationsBarLayout)
ui/InputFiled/imageTypeFiled Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -172,7 +172,13 @@ export const Mine = () => {
172172 { /* 프로필 사진 */ }
173173
174174 { myInfo ?. profileImageUrl ? (
175- < Image alt = "my" width = { 150 } height = { 150 } src = { myInfo . profileImageUrl } />
175+ < Image
176+ alt = "my"
177+ width = { 150 }
178+ height = { 150 }
179+ src = { myInfo . profileImageUrl }
180+ unoptimized
181+ />
176182 ) : (
177183 < Image width = { 150 } height = { 150 } src = "/icons/mypage/defaultImg.svg" alt = "my" />
178184 ) }
Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ export const ModifyForm = ({
6565 ? URL . createObjectURL ( editForm . profileImage )
6666 : editForm . profileImageUrl || '/icons/mypage/defaultImg.svg'
6767 }
68+ unoptimized
6869 onClick = { ( ) => {
6970 handleImageClick ( ) ;
7071 } }
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ export default function RankingPage() {
129129 </ div >
130130 </ div >
131131 < div className = "flex justify-end mb-2" >
132- < span className = "text-sm font-medium" > 랭킹 1시간마다 갱신 됩니다.</ span >
132+ < span className = "text-sm font-medium" > 랭킹은 1시간마다 갱신 됩니다.</ span >
133133 </ div >
134134 { /* Ranking Table */ }
135135 < div className = "bg-[#1a2332] rounded-2xl shadow-2xl overflow-hidden border border-gray-800" >
Original file line number Diff line number Diff line change 160160 --sidebar-border : # 214d35 ;
161161 --sidebar-ring : # 00d084 ;
162162}
163+
164+ .cm-editor {
165+ border-radius : 10px ;
166+ }
167+
168+ .cm-gutters {
169+ border-radius : 10px 0 0 10px !important ;
170+ }
171+
172+ .cm-gutter .cm-lineNumbers {
173+ border-radius : 10px 0 0 10px !important ;
174+ }
Original file line number Diff line number Diff line change @@ -61,9 +61,8 @@ export default function DetailProblem({ detailProblem }: IDetailProblemProps) {
6161 < h4 className = "text-secondary mt-1" >
6262 < strong > 입출력 예시</ strong >
6363 </ h4 >
64- { testcases . map ( ( testCase , idx ) => (
64+ { testcases . map ( ( testCase ) => (
6565 < div key = { testCase . id } className = "gap-2 p-1 bg-[#1a2332] rounded-lg w-full" >
66- < p > 예시 ({ idx + 1 } )</ p >
6766 < div className = "flex gap-4" >
6867 < div className = "flex flex-1 flex-col gap-2" >
6968 < span > 입력</ span >
@@ -84,7 +83,7 @@ export default function DetailProblem({ detailProblem }: IDetailProblemProps) {
8483 ) }
8584 { imageUrl && (
8685 < div className = "w-full h-60 relative" >
87- < Image src = { imageUrl } alt = "문제예시이미지" fill className = "object-contain" />
86+ < Image src = { imageUrl } alt = "문제예시이미지" fill className = "object-contain" unoptimized />
8887 </ div >
8988 ) }
9089 < hr className = "w-full h-[1px] bg-background" />
Original file line number Diff line number Diff line change @@ -17,7 +17,9 @@ export default function MarkdownRenderer({ source }: Props) {
1717 < h3 className = "text-md font-semibold text-secondary mt-3" { ...props } />
1818 ) ,
1919 strong : ( { ...props } ) => < strong className = "font-bold text-md" { ...props } /> ,
20- li : ( { ...props } ) => < li className = "ml-3" style = { { listStyleType : 'disc' } } { ...props } /> ,
20+ li : ( { ...props } ) => (
21+ < li style = { { listStyleType : 'disc' , listStylePosition : 'inside' } } { ...props } />
22+ ) ,
2123 } }
2224 >
2325 { source }
Original file line number Diff line number Diff line change @@ -23,13 +23,15 @@ export default function RenderImageContent({
2323 fill
2424 className = { cn ( 'object-cover absolute' ) }
2525 alt = "preview-image"
26+ unoptimized
2627 />
2728 ) : previewImage ? (
2829 < Image
2930 src = { previewImage }
3031 fill
3132 className = { cn ( 'object-contain absolute' ) }
3233 alt = "preview-image"
34+ unoptimized
3335 />
3436 ) : (
3537 < div className = "absolute flex flex-col gap-2 items-center justify-center w-full h-full" >
You can’t perform that action at this time.
0 commit comments