Skip to content

Commit 388f12e

Browse files
committed
style: added styles
1 parent 5466dd8 commit 388f12e

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/views/List.jsx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,16 @@ export function List({ data, listPath }) {
5959
<div className="mt-10 flex justify-center">
6060
{data.length < 1 ? (
6161
<div className="welcome-prompt">
62-
<h2>Welcome to Your List!</h2>
63-
<p>
62+
<h2 className="text-black">Welcome to Your List!</h2>
63+
<p className="text-black">
6464
Ready to start your list? Click on the button below to add your very
6565
first item.
6666
</p>
67-
<button onClick={() => navigate('/manage-list')} type="button">
67+
<button
68+
onClick={() => navigate('/manage-list')}
69+
type="button"
70+
className="bg-blue-500 text-white font-bold py-2 px-4 rounded-md mt-4"
71+
>
6872
Add Item
6973
</button>
7074
</div>

0 commit comments

Comments
 (0)