We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 173db6a commit eefdcbcCopy full SHA for eefdcbc
src/components/Certifications.tsx
@@ -11,7 +11,7 @@ const Certifications: React.FC = () => {
11
{certifications.map((cert, index) => (
12
<div
13
key={index}
14
- className={`relative h-[180px] w-[130px] transform rounded-lg transition ${
+ className={`relative w-[130px] transform rounded-lg transition ${
15
hoveredIndex === index ? "z-10 scale-105" : "z-0"
16
} ${index !== 0 ? "-ml-[80px]" : ""}`}
17
onMouseEnter={() => setHoveredIndex(index)}
@@ -21,7 +21,7 @@ const Certifications: React.FC = () => {
21
<img
22
src={cert.src}
23
alt={cert.alt}
24
- className="h-full w-full rounded-lg object-contain"
+ className="w-full rounded-lg object-contain"
25
/>
26
</a>
27
</div>
0 commit comments