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
{{ message }}
This repository has been archived by the owner on Jun 28, 2022. It is now read-only.
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.
The text was updated successfully, but these errors were encountered:
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.The text was updated successfully, but these errors were encountered: