Skip to content

Commit

Permalink
fix: Warning: Invalid DOM property class. Did you mean className?
Browse files Browse the repository at this point in the history
  • Loading branch information
hiporox committed Apr 18, 2024
1 parent 385a256 commit 6441a96
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/space/home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -339,14 +339,14 @@ const Home = ({ children }: { children: React.ReactNode }) => {
</h1>
</div>*/}
<main>
<div class="p-8 grid grid-cols-4 md:grid-cols-8 lg:grid-cols-12 grid-rows-4 md:grid-rows-6 lg:grid-rows-8 gap-4 lg:gap-8 h-screen max-h-screen">
<div class="p-4 border-2 row-span-8 col-span-6 max-h-full overflow-scroll rounded-md">{children}</div>
<div class="p-4 bg-slate-300 row-span-4 col-span-4 rounded-md flex items-center justify-center"></div>
<div class="p-4 bg-slate-300 row-span-2 col-span-2 rounded-md flex items-center justify-center"></div>
<div class="p-4 bg-slate-300 row-span-2 col-span-2 rounded-md flex items-center justify-center"></div>
<div class="p-4 bg-slate-300 row-span-2 col-span-4 rounded-md flex items-center justify-center"></div>
<div class="p-4 bg-slate-300 row-span-2 col-span-4 rounded-md flex items-center justify-center"></div>
<div class="p-4 bg-slate-300 row-span-2 col-span-2 rounded-md flex items-center justify-center"></div>
<div className="p-8 grid grid-cols-4 md:grid-cols-8 lg:grid-cols-12 grid-rows-4 md:grid-rows-6 lg:grid-rows-8 gap-4 lg:gap-8 h-screen max-h-screen">
<div className="p-4 border-2 row-span-8 col-span-6 max-h-full overflow-scroll rounded-md">{children}</div>
<div className="p-4 bg-slate-300 row-span-4 col-span-4 rounded-md flex items-center justify-center"></div>
<div className="p-4 bg-slate-300 row-span-2 col-span-2 rounded-md flex items-center justify-center"></div>
<div className="p-4 bg-slate-300 row-span-2 col-span-2 rounded-md flex items-center justify-center"></div>
<div className="p-4 bg-slate-300 row-span-2 col-span-4 rounded-md flex items-center justify-center"></div>
<div className="p-4 bg-slate-300 row-span-2 col-span-4 rounded-md flex items-center justify-center"></div>
<div className="p-4 bg-slate-300 row-span-2 col-span-2 rounded-md flex items-center justify-center"></div>
</div>
{/*{renderRightSidebar()}*/}
</main>
Expand Down

0 comments on commit 6441a96

Please sign in to comment.