Skip to content

Commit

Permalink
fix hover height (#6352)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pranshu1902 authored Oct 4, 2023
1 parent d53eed9 commit 66e5d91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/Facility/FacilityHome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ export const FacilityHome = (props: any) => {
StaffUserTypeIndex;

const editCoverImageTooltip = hasPermissionToEditCoverImage && (
<div className="absolute right-0 top-0 z-10 flex h-48 w-full flex-col items-center justify-center bg-black text-sm text-gray-300 opacity-0 transition-[opacity] hover:opacity-60 md:h-[88px]">
<div className="absolute right-0 top-0 z-10 flex h-full w-full flex-col items-center justify-center bg-black text-sm text-gray-300 opacity-0 transition-[opacity] hover:opacity-60 md:h-[88px]">
<i className="fa-solid fa-pen" />
<span className="mt-2">{`${hasCoverImage ? "Edit" : "Upload"}`}</span>
</div>
Expand Down

0 comments on commit 66e5d91

Please sign in to comment.