Skip to content

Commit

Permalink
Merge pull request #50 from invopop/table_redesign
Browse files Browse the repository at this point in the history
remove outline for checkbox button
  • Loading branch information
beliolfa authored Oct 24, 2024
2 parents 092a84c + 3edd86d commit 4977e51
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@invopop/popui",
"license": "MIT",
"version": "0.0.10",
"version": "0.0.11",
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run package",
Expand Down
2 changes: 1 addition & 1 deletion svelte/lib/BaseTable.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
<th scope="col" class="bg-white sticky top-0 z-10 rounded-tr-md">
{#if !hideSelectAll}
<button
class="pl-5 pr-3 h-[40px] flex items-center"
class="pl-5 pr-3 h-[40px] flex items-center outline-none"
on:click|stopPropagation={() => {
toggleAllSelected(!selectedRows.length)
}}
Expand Down
2 changes: 1 addition & 1 deletion svelte/lib/BaseTableRow.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
{#if selectable}
<td>
<button
class="pl-5 pr-1.5 h-[40px] flex items-center"
class="pl-5 pr-1.5 h-[40px] flex items-center outline-none"
on:click|stopPropagation={() => {
dispatch('checked', !checked)
}}
Expand Down

0 comments on commit 4977e51

Please sign in to comment.