Skip to content

Commit

Permalink
Fix border bottom and roundness on single items (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
portdeveloper authored Nov 4, 2024
1 parent 0fae1b7 commit f3ae7a3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/nextjs/pages/batches/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,10 @@ const Batches = () => {
</thead>
<tbody className="shadow-even rounded-3xl text-sm">
{currentItems.map((batch, index) => (
<tr key={index} className="bg-white border-b border-base-100 text-center">
<tr
key={index}
className="bg-white border-b border-base-100 text-center last:rounded-b-3xl last:border-none"
>
<td className="py-3 px-2 xs:px-4">{batch.name}</td>
<td className="py-3 px-2 xs:px-4 hidden lg:table-cell">{batch.startDate}</td>
<td className="py-3 px-2 xs:px-4 hidden sm:table-cell">{batch.participants}</td>
Expand Down

0 comments on commit f3ae7a3

Please sign in to comment.