Skip to content

Commit

Permalink
fix(table): checkbox padding (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
romiekos authored Aug 9, 2023
1 parent 47eeadb commit d2cdcc1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/TableCell.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default defineComponent({
})
</script>
<template>
<td class="h-12 max-h-12 border-b border-gray" :class="padding === 'md' ? 'pl-6' : 'pl-2'">
<td class="h-12 max-h-12 border-b border-gray" :class="padding === 'md' ? 'pl-6' : 'px-1'">
<div class="flex items-center justify-start">
<template v-if="expanded !== undefined">
<button
Expand Down
2 changes: 1 addition & 1 deletion src/stories/Table.stories.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ When the input changes, the selection state is cleared.
This composable supports multiselection mode for checkboxes.
Initialize it with the second argument set to `true`.

See the code in the [examples](https://github.com/archilogic-com/ui-components/blob/main/src/examples/MultiSelectTableExample.vue) for more details on how to use our checkbox and table components together in this mode.
See the code in the [examples](https://github.com/archilogic-com/honeycomb/blob/main/src/examples/MultiSelectTableExample.vue) for more details on how to use our checkbox and table components together in this mode.

## Arrow Key Navigation

Expand Down

0 comments on commit d2cdcc1

Please sign in to comment.