Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 src/components/MDX/Sandpack/ClearButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ export function ClearButton({onClear}: ClearButtonProps) {
<button
className="text-sm text-primary dark:text-primary-dark inline-flex items-center hover:text-link duration-100 ease-in transition mx-1"
onClick={onClear}
title="Clear all edits and reload sandbox"
title="모든 편집 내용을 지우고 샌드박스를 다시 로딩합니다."
type="button">
<IconClose className="inline mx-1 relative" />
<span className="hidden md:block">Clear</span>
<span className="hidden md:block">초기화</span>
</button>
);
}
2 changes: 1 addition & 1 deletion src/components/MDX/Sandpack/DownloadButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ ${css}
<button
className="text-sm text-primary dark:text-primary-dark inline-flex items-center hover:text-link duration-100 ease-in transition mx-1"
onClick={downloadHTML}
title="Download Sandbox"
title="샌드박스를 다운로드합니다."
type="button">
<IconDownload className="inline me-1" /> 다운로드
</button>
Expand Down
2 changes: 1 addition & 1 deletion src/components/MDX/Sandpack/OpenInCodeSandboxButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const OpenInCodeSandboxButton = () => {
return (
<UnstyledOpenInCodeSandboxButton
className="text-sm text-primary dark:text-primary-dark inline-flex items-center hover:text-link duration-100 ease-in transition mx-1 ms-2 md:ms-1"
title="Open in CodeSandbox">
title="CodeSandbox에서 편집합니다.">
Comment thread
lumirlumir marked this conversation as resolved.
<IconNewPage
className="inline mx-1 relative top-[1px]"
width="1em"
Expand Down
Loading