Design comparison
SolutionDesign
Solution retrospective
What are you most proud of, and what would you do differently next time?
Happy with the layout and enjoyed brushing up on SCSS. Next time I would stick to a naming convention.
What challenges did you encounter, and how did you overcome them?Creating the chevron underneath the share menu "bubble". I used the ::after pseudo element and styled it like this:
::after {
content: "";
position: absolute;
bottom: -11.8px;
width: 0;
height: 0;
left: 50%;
transform: translateX(-50%);
border-left: 12px solid transparent;
border-right: 12px solid transparent;
border-top: 12px solid #48556a;
}
What specific areas of your project would you like help with?
Semantics, accessibility, readability.
Join 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