fix: cursor:pointer sur Picto, Popup, Video
parent
db992ab927
commit
a8a3957188
|
@ -17,7 +17,7 @@ export const EmbeddedYoutube = ({
|
|||
className,
|
||||
style = {},
|
||||
}: Props) => (
|
||||
<div onClick={onClick}>
|
||||
<div onClick={onClick} style={{ cursor: "pointer" }}>
|
||||
<iframe
|
||||
width={width}
|
||||
height={height}
|
||||
|
|
|
@ -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"
|
||||
/>
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Reference in New Issue