Skip to content

Commit 80d3b75

Browse files
committed
Add a heading to dictinguish existing lists from CreateList form
1 parent f015577 commit 80d3b75

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/views/authenticated/AuthenticatedHome.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
display: block;
55
margin-top: 20px;
66
padding: 0;
7+
margin: 0;
78

89
@include tablet {
910
padding: 0;

src/views/authenticated/AuthenticatedHome.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export function AuthenticatedHome({ data, setListPath, user }: Props) {
1515
{user && (
1616
<>
1717
<CreateList user={user} setListPath={setListPath} />
18+
<h3 className="heading-text">Your Lists</h3>
1819
<ul className="lists">
1920
{data.map((list, index) => (
2021
<SingleList

0 commit comments

Comments
 (0)