From 6981b9949171fda3554565e673f75fcb91b5cf05 Mon Sep 17 00:00:00 2001 From: Valik Date: Mon, 22 Jan 2024 22:10:57 +0100 Subject: [PATCH] style(ui): update styles --- public/index.html | 3 +-- public/manifest.json | 1 - src/components/ContactForm.jsx | 4 +++- src/components/ContactList.jsx | 37 +++++++++++++++++++--------------- 4 files changed, 25 insertions(+), 20 deletions(-) diff --git a/public/index.html b/public/index.html index de9a84b..334ffb1 100644 --- a/public/index.html +++ b/public/index.html @@ -1,10 +1,9 @@ - + - +
{ */ const ContactListItem = ({ contact, onDeleteContact }) => { return ( - -
{contact.name}
- -
{contact.number}
- - + + + +
{contact.name}
+ + +
{contact.number}
+ + + + +
); };