We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d90d30 commit cf7b39bCopy full SHA for cf7b39b
components/AuthorCard.tsx
@@ -41,11 +41,11 @@ function AuthorCard({ authorData }) {
41
: [];
42
43
return (
44
- <div className="author-card text-white border border-white p-6 md:p-8">
+ <div className="author-card text-white border border-white p-6 md:p-8 md:w-[70%] mx-auto">
45
<div className="flex flex-col items-center md:flex-row md:items-start">
46
- <div className="avatar-container mb-4 md:mb-0 md:mr-10">
+ <div className="avatar-container mb-4 md:mb-0 md:mr-20">
47
<Image
48
- className="w-full max-w-[150px] h-auto rounded-full"
+ className="w-full max-w-[240px] h-auto rounded-full"
49
src={authorData.avatar || "/default-avatar.png"}
50
alt={authorData.imgAlt}
51
width={150}
0 commit comments