Skip to content

Commit

Permalink
fix(withTableSelection): implement requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Bluepuper committed Sep 28, 2023
1 parent 9fc20be commit bc18f2e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
10 changes: 9 additions & 1 deletion src/components/Table/Table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,15 @@
line-height: variables.$tableLineHeight;
text-align: left;
overflow-wrap: break-word;
min-width: 18px;
min-width: 17px;

&:first-child {
padding-left: 0;
}

&:last-child {
padding-right: 0;
}

&:not(&_word-wrap) {
@include mixins.overflow-ellipsis();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ export function withTableSelection<I extends TableDataItem, E extends {} = {}>(
}: {
checked: boolean;
disabled: boolean;
headCell?: boolean;
handler: React.ChangeEventHandler<HTMLInputElement>;
}) {
return (
Expand Down

0 comments on commit bc18f2e

Please sign in to comment.