ngx-rs-ant 1.6.4 → 1.6.5

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.
@@ -3633,6 +3633,9 @@ class ModalComponent {
3633
3633
  element.style.left = currentLeft + 'px';
3634
3634
  }
3635
3635
  onWindowResize() {
3636
+ if (this.size === 'full') {
3637
+ return;
3638
+ }
3636
3639
  this.modalElementRef.nativeElement.style.top = '24px';
3637
3640
  this.modalElementRef.nativeElement.style.left =
3638
3641
  (this.elementRef.nativeElement.parentElement.offsetWidth - this.modalElementRef.nativeElement.offsetWidth) / 2 + 'px';