Skip to content

Commit

Permalink
Fix corner cell bg
Browse files Browse the repository at this point in the history
  • Loading branch information
HorusGoul committed Dec 24, 2024
1 parent 227e248 commit ed34f71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/pwa/src/components/periodic-table/PeriodicTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ function GroupCell({ number, name }: { number: number; name: string }) {
function buildTable(elementRenderer: ElementRendered) {
const rows: JSX.Element[] = [
<div key="row-head" className="table-row">
<div className="table-cell bg-accent-50">
<div className="relative h-full w-full dark:bg-accent-950" />
<div className="table-cell">
<div className="relative h-full w-full bg-accent-50 dark:bg-accent-950" />
</div>
<GroupCell name="I A" number={1} />
<GroupCell name="II A" number={2} />
Expand Down

0 comments on commit ed34f71

Please sign in to comment.