Skip to content

Commit

Permalink
feat: adjust table border radius
Browse files Browse the repository at this point in the history
  • Loading branch information
kunish committed Sep 1, 2023
1 parent 902d6c1 commit 9a9b1b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/pages/Connections.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,8 @@ export default () => {
/>
</div>

<div class="overflow-x-auto whitespace-nowrap">
<table class="table table-xs bg-base-200">
<div class="overflow-x-auto whitespace-nowrap rounded-md">
<table class="table table-xs rounded-none bg-base-200">
<thead>
<For each={table.getHeaderGroups()}>
{(headerGroup) => (
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Logs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ export default () => {
onInput={(e) => setSearch(e.target.value)}
/>

<div class="overflow-x-auto whitespace-nowrap">
<table class="table table-zebra-zebra table-xs bg-base-200">
<div class="overflow-x-auto whitespace-nowrap rounded-md">
<table class="table table-zebra-zebra table-xs rounded-none bg-base-200">
<thead>
<For each={table.getHeaderGroups()}>
{(headerGroup) => (
Expand Down

0 comments on commit 9a9b1b4

Please sign in to comment.