You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
506 B
14 lines
506 B
$node-height: 48px !default;
|
|
// Minimum height for tree nodes in highest density is difficult to determine as
|
|
// developers can display arbitrary content. We use a minimum height which ensures
|
|
// that common content placed in tree nodes does not exceed (e.g. icons, checkboxes).
|
|
$node-minimum-height: 24px !default;
|
|
$node-maximum-height: $node-height !default;
|
|
|
|
$density-config: (
|
|
height: (
|
|
default: $node-height,
|
|
maximum: $node-maximum-height,
|
|
minimum: $node-minimum-height,
|
|
)
|
|
) !default;
|