Hello there. Good job on completing this challenge.
@media screen and (width <= 768px) {
.l-card__shadow {
width: 50%;
}
}
@media screen and (max-width: 480px) {
.l-card__shadow {
width: 80%;
}
}
I just seen your code and preview site. Based on the code above you have write in sass file, I can suggest you to use max-width
for your card component.
<span class="c-card__creator__text">Creation of </span>
<p class="c-card__creator__name">Jules Wyvern</p>
And this part of code in html, I suggest you should put the <span>
tag inside the <p>
tag like the code below.
<p>Creation of <span>Jules Wyvern</span></p>
Good luck, and happy coding! :D