Skip to content

Commit fff5973

Browse files
committed
fix: tailwind syntax error
1 parent 444bb3b commit fff5973

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/client/src/components/molecules/RaceTabMolecules/RaceTabTable.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default function RaceTabTable({
1717
<tr key={headerGroup.id}>
1818
{headerGroup.headers.map((header) => (
1919
<th
20-
className={`sticky top-0 z-10 w-24 border-b-2 border-r-2 border-t-2 border-helios bg-slate px-4 py-2 text-center text-xs font-medium uppercase text-helios first:border-l-2 dark:bg-lightergrey ${header.id === "TimeStamp" ? "left-0 z-50" : ""}`}
20+
className={`sticky top-0 z-10 w-24 border-b-2 border-r-2 border-t-2 border-helios bg-slate px-4 py-2 text-center text-xs font-medium uppercase text-helios first:border-l-2 dark:bg-lightergrey ${header.id === "data_timeStamp" ? "left-0 z-50" : ""}`}
2121
key={header.id}
2222
>
2323
{header.isPlaceholder
@@ -50,7 +50,7 @@ export default function RaceTabTable({
5050
>
5151
{row.getVisibleCells().map((cell) => (
5252
<td
53-
className={`text-gray-900 w-fullpx-4 sticky w-24 border-b-2 border-r-2 border-helios py-2 text-center text-sm first:border-l-2 dark:text-white ${cell.id.includes("TimeStamp") ? "left-0 z-10" : ""}`}
53+
className={`text-gray-900 sticky w-24 border-b-2 border-r-2 border-helios px-4 text-center text-sm first:border-l-2 dark:text-white ${cell.id.includes("data_timeStamp") ? "left-0 z-10" : ""}`}
5454
key={cell.id}
5555
>
5656
{flexRender(cell.column.columnDef.cell, cell.getContext())}

0 commit comments

Comments
 (0)