Responsive Huddle Landing Page with CSS Flexbox and CSS Grid
Design comparison
Solution retrospective
I'm not sure why the border around the Facebook icon is not a perfect circle. Any tips and feedback is greatly appreciated!
Community feedback
- @ApplePieGiraffePosted almost 4 years ago
Hi, Jackson Jude! 👋
Good job on this challenge! 👏 Your solution looks nice and is responsive! 🙌
I suggest,
- Adding
cursor: pointer
to the button. - Adding a little bit of margin or padding below the social media icons so that they aren't touching the bottom of the screen in the desktop layout on devices with smaller screen heights. 🙂
And I think this StackOverflow question might help you get rid of those errors on your solution report and make your solution more accessible. 😉
Keep coding (and happy coding, too)! 😁
1 - Adding
- @sitiannisa13Posted almost 4 years ago
hi i type this in css file to get the perfect circle:) i.fab{ border-radius:50%; padding:10px; font-size: 1.6em; width: 1.6em; text-align: center; line-height: 1.6em; }
1 - @OikawasanPosted almost 4 years ago
Hi, add this following codes to get a perfect circle in all of your icons:
.fa-facebook, .fa-twitter, .fa-instagram { display: flex; align-items: center; justify-content: center; height: 40px; width: 40px; }
1 - @faberordonez1Posted almost 4 years ago
The problem with the icon outline can be solved by applying custom padding only to the facebook icon
1
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord