Skip to content

Commit eca66df

Browse files
committed
Fix footer social link dimensions to 12px × 12px
- Correct width from 120px to 12px for sf-social-link - Now each social link is a proper 12px × 12px square - Creates compact, properly sized clickable areas for social icons - Matches the 12px icon size for perfect alignment
1 parent 17b2a69 commit eca66df

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export default function Footer() {
116116
link.name === "Share" ? undefined : "noopener noreferrer"
117117
}
118118
className="sf-social-link opacity-50 hover:opacity-100 transition-opacity duration-[168ms] ease-in-out text-sf-fg-default flex items-center justify-center"
119-
style={{ width: "120px", height: "12px" }}
119+
style={{ width: "12px", height: "12px" }}
120120
whileHover={{ scale: 1.05 }}
121121
whileTap={{ scale: 0.95 }}
122122
initial={{ y: 10 }}

0 commit comments

Comments
 (0)