Skip to content

Commit

Permalink
Add a heading to dictinguish existing lists from CreateList form
Browse files Browse the repository at this point in the history
  • Loading branch information
zahrafalak committed Oct 14, 2024
1 parent f015577 commit 80d3b75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/views/authenticated/AuthenticatedHome.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
display: block;
margin-top: 20px;
padding: 0;
margin: 0;

@include tablet {
padding: 0;
Expand Down
1 change: 1 addition & 0 deletions src/views/authenticated/AuthenticatedHome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export function AuthenticatedHome({ data, setListPath, user }: Props) {
{user && (
<>
<CreateList user={user} setListPath={setListPath} />
<h3 className="heading-text">Your Lists</h3>
<ul className="lists">
{data.map((list, index) => (
<SingleList
Expand Down

0 comments on commit 80d3b75

Please sign in to comment.