Skip to content

Commit

Permalink
Merge pull request #15115 from IgniteUI/didimmova/fix-15093
Browse files Browse the repository at this point in the history
fix(tree): update checkbox spacing in tree
  • Loading branch information
kdinev authored Nov 29, 2024
2 parents 6c2c657 + 1634cdc commit 360942e
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
), $variant);

$icon-space: map.get((
'material': $icon-space-default,
'material': $icon-space-indigo,
'fluent': $icon-space-default,
'bootstrap': $icon-space-default,
'indigo': $icon-space-indigo
Expand Down Expand Up @@ -209,6 +209,12 @@
margin-inline-end: $icon-space;
}

@if $variant == 'material' {
%node-select {
margin-inline: rem(10px) rem(14px);
}
}

@if $variant == 'indigo' {
%node-select {
margin-inline-end: rem(8px);
Expand Down

0 comments on commit 360942e

Please sign in to comment.