After completing the QR code component card this wasn't a difficult challenge because it was almost the same.
What specific areas of your project would you like help with?In css I used a margin-top
and margin-bottom
on my h2
. If I remove those margins the author image gets crushed and I don't know why.
/* Author name */ h2 { color: var(--color-gray-950); font-family: 'Figtree', sans-serif; font-size: var(--font-size-3); font-weight: 800; /* Extra bold/Ultra bold */ line-height: 150%; /* Image gets crushed else IDK why */ margin-top: auto; margin-bottom: auto; margin-left: 0.5rem; }