Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Pfrommer1982 committed Nov 15, 2023
1 parent 60a24b9 commit c7f4fe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

</head>
<body>
<div id="root"></div>
<div className='bg-[#76B5C8]'id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>

2 comments on commit c7f4fe6

@DouglasVDM
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A small bug was introduced in the last commit - missing-whitespace-between-attributes

It's an easy fix, on line 10, add a space after the className declaration, located in front of id="root">...
Change to 1. instead of 2

  1. <div className='bg-[#76B5C8]' id="root"></div>
  2. <div className='bg-[#76B5C8]'id="root"></div>

Screenshot from 2024-02-03 23-41-42

@Pfrommer1982
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for pointing it out!

Please sign in to comment.