fixing page breaks in the print hTML

This commit is contained in:
Amruth Pillai
2020-03-27 20:36:16 +05:30
parent 866e4ae6d7
commit 6eccbd5373
3 changed files with 11 additions and 5 deletions

View File

@ -11,7 +11,11 @@ const Pikachu = () => {
const Photo = () =>
data.profile.photo !== '' && (
<div className="self-center col-span-4">
<img className="h-48 rounded-full mx-auto object-cover" src={data.profile.photo} alt="" />
<img
className="w-48 h-48 rounded-full mx-auto object-cover"
src={data.profile.photo}
alt=""
/>
</div>
);