This is a solution to the Fylo data storage component challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.
- Solution URL: GitHub
- Live Site URL: GitHub Pages
// Upside down right triangle
.tootip {
&::after {
content: '';
border-style: solid;
border-width: 10px;
border-color: white white transparent transparent;
position: absolute;
top: 100%;
right: 0;
}
}