This commit is contained in:
Mosaad 2023-02-25 18:01:47 +02:00
parent 23a7679acf
commit 2bbfba871e

View file

@ -12,7 +12,7 @@ export default function Person({ person }) {
const img = `https://images.weserv.nl/?url=${unavatar}&w=100&l=9&af&il&n=-1`; const img = `https://images.weserv.nl/?url=${unavatar}&w=100&l=9&af&il&n=-1`;
const { tag: currentTag } = useParams(); const { tag: currentTag } = useParams();
return ( return (
<div className="PersonWrapper" style={{ contentVisibility: "auto" }}> <div className="PersonWrapper" style={{ contentVisibility: "auto", containIntrinsicHeight: '560px' }}>
<div className="PersonInner"> <div className="PersonInner">
<header> <header>
<img <img
@ -104,4 +104,3 @@ Person.propTypes = {
}, },
}), }),
}; };