Skip to content

Commit

Permalink
fix(Table): fixed checkbox max width (#1174)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mishnya authored Dec 1, 2023
1 parent d767727 commit ed68043
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
@use '../../variables';

$checkboxWidth: 17px;

#{variables.$block} {
&__checkbox_cell {
position: relative;
min-width: 17px;
min-width: $checkboxWidth;
width: $checkboxWidth;

This comment has been minimized.

Copy link
@ogonkov

ogonkov Dec 18, 2023

Contributor

That should be in column config instead, isn't it?

}

&__selection-checkbox {
Expand Down

0 comments on commit ed68043

Please sign in to comment.