udacity / reactnd-contacts-complete

Code-along project for the Contacts app
https://www.udacity.com/course/react-nanodegree--nd019
170 stars 579 forks source link

Missing CSS for add-contact link in index.css #1

Open gnevin opened 7 years ago

gnevin commented 7 years ago

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.