Skip to content

Commit

Permalink
feat: table style
Browse files Browse the repository at this point in the history
  • Loading branch information
Zephyruso authored and Zephyruso committed Sep 5, 2023
1 parent 3773855 commit 0115daf
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/pages/Connections.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ export default () => {
</div>

<div class="overflow-x-auto whitespace-nowrap rounded-md bg-base-300">
<table class="table table-xs relative rounded-none">
<table class="table table-zebra table-xs relative rounded-none">
<thead class="sticky top-0 z-10">
<For each={table.getHeaderGroups()}>
{(headerGroup) => (
Expand Down Expand Up @@ -308,7 +308,11 @@ export default () => {
<tbody>
<For each={table.getRowModel().rows}>
{(row) => (
<tr class="hover">
<tr
class={twMerge(
'hover:!bg-primary hover:text-primary-content',
)}
>
<For each={row.getVisibleCells()}>
{(cell) => (
<td
Expand Down

0 comments on commit 0115daf

Please sign in to comment.