fix: cursor:pointer sur Picto, Popup, Video

suppression-manon-adrien
Sebastien Arod 2024-06-12 17:06:55 +02:00
parent db992ab927
commit a8a3957188
3 changed files with 3 additions and 2 deletions

View File

@ -17,7 +17,7 @@ export const EmbeddedYoutube = ({
className,
style = {},
}: Props) => (
<div onClick={onClick}>
<div onClick={onClick} style={{ cursor: "pointer" }}>
<iframe
width={width}
height={height}

View File

@ -10,6 +10,7 @@ export const Picto = ({ resistant }: Props) => (
<img
src={isAncienResistant(resistant) ? pictoFondBlancNbUrl : pictoFondBlancUrl}
alt={resistant.noms}
style={{ cursor: "pointer" }}
height="40px"
width="40px"
/>

View File

@ -18,7 +18,7 @@ export const PopupContent = ({ resistant }: { resistant: Resistant }) => {
return (
<div
style={{ minWidth: "30em", minHeight: "15em" }}
style={{ minWidth: "30em", minHeight: "15em", cursor: "pointer" }}
onClick={() =>
isHome
? window.location.assign(getResistantPageUrl(resistant))