Fylo Data Storage Component

Solution retrospective
In this project, I used a screen-reader-only CSS, learned more about color gradients, and understood the positioning of child divs as a container inside parent divs which expand according to their parent (I used this in the progress bar).
One nice trick I also learned and implemented was the creation of a triangle by adjusting the thickness and color of borders as follows:
.storage__remain::after {
position: absolute;
content: "";
width: 0;
height: 0;
border-top: 25px solid transparent;
border-bottom: 25px solid transparent;
border-right: 25px solid var(--clr-neutral-1000);
bottom: -1.25rem;
right: 0;
}
Please log in to post a comment
Log in with GitHubCommunity feedback
No feedback yet. Be the first to give feedback on mycrochip's solution.
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