Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Commit

Permalink
chore: added cursor-pointer to img upload (calcom#12624)
Browse files Browse the repository at this point in the history
* added cursor-pointer to img upload

* nit
  • Loading branch information
PeerRich authored Dec 2, 2023
1 parent ca78be0 commit dcf9c6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ui/components/image-uploader/ImageUploader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export default function ImageUploader({
color={triggerButtonColor ?? "secondary"}
type="button"
data-testid="open-upload-avatar-dialog"
className="py-1 text-sm">
className="cursor-pointer py-1 text-sm">
{buttonMsg}
</Button>
</DialogTrigger>
Expand All @@ -196,7 +196,7 @@ export default function ImageUploader({
{result && <CropContainer imageSrc={result as string} onCropComplete={setCroppedAreaPixels} />}
<label
data-testid="open-upload-image-filechooser"
className="bg-subtle hover:bg-muted hover:text-emphasis border-subtle text-default mt-8 rounded-sm border px-3 py-1 text-xs font-medium leading-4 focus:outline-none focus:ring-2 focus:ring-neutral-900 focus:ring-offset-1">
className="bg-subtle hover:bg-muted hover:text-emphasis border-subtle text-default mt-8 cursor-pointer rounded-sm border px-3 py-1 text-xs font-medium leading-4 focus:outline-none focus:ring-2 focus:ring-neutral-900 focus:ring-offset-1">
<input
onInput={onInputFile}
type="file"
Expand Down

0 comments on commit dcf9c6a

Please sign in to comment.