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
commit ed78f8fc4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)} />