When I was following the video, I encountered unexpected behavior: I was unable to rotate the arrow icon (which is located on the left side of the "Email me" anchor/link).
.link-arrow { color: var(--color-link); transform: rotate(-45deg); }
This code didn't work for me, so I tried a different CSS selector:
.links-container i{ color: var(--color-link); transform: rotate(-45deg); }
Now it works for me.
When I was following the video, I encountered unexpected behavior: I was unable to rotate the arrow icon (which is located on the left side of the "Email me" anchor/link).
.link-arrow { color: var(--color-link); transform: rotate(-45deg); }This code didn't work for me, so I tried a different CSS selector:
.links-container i{ color: var(--color-link); transform: rotate(-45deg); }Now it works for me.