Merge pull request #687 from chandiwalaaadhar/fix/pikachu-masthead-asymmetric-basic-details

Fix-Pikachu Masthead Basic Details looks asymmetric Due to Centred Alignment
This commit is contained in:
Amruth Pillai
2022-03-14 15:51:16 +01:00
committed by GitHub
@@ -15,7 +15,7 @@ export const MastheadSidebar: React.FC = () => {
const { name, photo, email, phone, website, location, profiles } = useAppSelector((state) => state.resume.basics);
return (
<div className="col-span-2 grid justify-items-center gap-4">
<div className="col-span-2 grid justify-items-left gap-4">
{photo.visible && !isEmpty(photo.url) && (
<div className="relative aspect-square h-full w-full">
<img alt={name} src={photo.url} className={getPhotoClassNames(photo.filters)} />