You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In lesson 5, <a className="add-contact"... and <Link className="add-contact"... were introduced, but the styles to position this element next to the input field are missing, so the icon is showing up collapsed below the input.
Adding height: 63px; position: absolute; top: 0; right: 0; to line 111 of index.css fixes the issue.
In lesson 5,
<a className="add-contact"...and<Link className="add-contact"...were introduced, but the styles to position this element next to the input field are missing, so the icon is showing up collapsed below the input.Adding
height: 63px; position: absolute; top: 0; right: 0;to line 111 of index.css fixes the issue.