Skip to content

Commit

Permalink
fix: use kebab-case for style name
Browse files Browse the repository at this point in the history
  • Loading branch information
Bluepuper committed Nov 23, 2023
1 parent f9c8d28 commit 36f0018
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
left: 0;
right: 0;

&_verticalAlign_top {
&_vertical-align_top {
align-items: start;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ export function withTableSelection<I extends TableDataItem, E extends {} = {}>(
checked={checked}
disabled={disabled}
onChange={handler}
className={b('selection-checkbox', {verticalAlign: this.props.verticalAlign})}
className={b('selection-checkbox', {
'vertical-align': this.props.verticalAlign,
})}
/>
);
}
Expand Down

0 comments on commit 36f0018

Please sign in to comment.