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
4 changes: 2 additions & 2 deletions martin/martin-ui/src/components/dialogs/sprite-download.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export function SpriteDownloadDialog({ name, sprite, onCloseAction }: SpriteDown
</>
) : (
<>
<Copy className="h-4 w-4 mr-2" />
<Copy className="h-4 w-4 mr-1" />
Copy URL
</>
)}
Expand Down Expand Up @@ -231,7 +231,7 @@ export function SpriteDownloadDialog({ name, sprite, onCloseAction }: SpriteDown
</>
) : (
<>
<Copy className="h-4 w-4 mr-2" />
<Copy className="h-4 w-4 mr-1" />
Copy URL
</>
)}
Expand Down
4 changes: 2 additions & 2 deletions martin/martin-ui/src/components/sprite/SpriteCanvas.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const SpriteCanvas = ({ meta, image, label, previewMode = false }: SpriteCanvasP
</code>
<br />
<div className="pt-4 text-sm flex flex-row justify-center p-0.5">
<Copy className="h-3 w-3 mr-2" /> Click to copy
<Copy className="h-3 w-3 mr-1" /> Click to copy
</div>
</p>
</TooltipContent>
Expand Down Expand Up @@ -109,7 +109,7 @@ const SpriteCanvas = ({ meta, image, label, previewMode = false }: SpriteCanvasP
</TooltipTrigger>
<TooltipContent>
<div className="text-xs flex flex-row p-0.5">
<Copy className="h-3 w-3 mr-2" /> Click to copy
<Copy className="h-3 w-3 mr-1" /> Click to copy
</div>
</TooltipContent>
</Tooltip>
Expand Down
2 changes: 1 addition & 1 deletion martin/martin-ui/src/components/ui/tooltip-copy-text.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export function TooltipCopyText({ text, ...props }: TooltipCopyTextProps) {
<div className="flex flex-col justify-center items-center p-1">
<div className="text-sm font-mono">{text}</div>
<div className="text-xs pt-3 flex flex-row text-slate-400 p-0.5">
<Copy className="h-3 w-3 mr-2" /> Click to copy
<Copy className="h-3 w-3 mr-1" /> Click to copy
</div>
</div>
</TooltipContent>
Expand Down
Loading