@indigina/ui-kit 1.1.443 → 1.1.444

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6020,6 +6020,9 @@ class KitScrollNavigationComponent {
6020
6020
  setLastSectionMinHeight() {
6021
6021
  const contentHeight = this.content?.nativeElement.clientHeight;
6022
6022
  if (contentHeight && this.sectionContentRefs.length) {
6023
+ this.sectionContentRefs.forEach(ref => {
6024
+ ref.nativeElement.style.minHeight = '';
6025
+ });
6023
6026
  this.calculateLastSectionMinHeight(contentHeight);
6024
6027
  }
6025
6028
  }