@pepperi-addons/ngx-lib 0.4.2-beta.129 → 0.4.2-beta.130

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pepperi-addons/ngx-lib",
3
- "version": "0.4.2-beta.129",
3
+ "version": "0.4.2-beta.130",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": ">= 14.0.2",
6
6
  "@angular/cdk": ">= 14.0.2",
@@ -478,24 +478,26 @@
478
478
 
479
479
  &.small {
480
480
  max-width: 18rem !important;
481
+ width: calc(100vw - (var(--pep-spacing-2xl) * 2)) !important;
481
482
  height: auto;
482
483
  }
483
484
 
484
485
  &.regular {
485
486
  max-width: 36rem !important;
487
+ width: calc(100vw - (var(--pep-spacing-2xl) * 2)) !important;
486
488
  height: auto;
487
489
  }
488
490
 
489
491
  &.large {
490
492
  max-width: 54rem !important;
491
- width: 90vw;
493
+ width: calc(100vw - (var(--pep-spacing-2xl) * 2)) !important;
492
494
  height: auto;
493
- max-height: calc(100% - (var(--pep-spacing-2xl) * 2)) !important; // 90vh;
495
+ max-height: calc(100vh - (var(--pep-spacing-2xl) * 2)) !important; // 90vh;
494
496
 
495
497
  .mat-dialog-container {
496
498
  .mat-dialog-content {
497
499
  $border-size: 1px;
498
- max-height: 100% // calc(90vh - (#{variables.$dialog-header-height} + (#{variables.$content-padding} * 2) + (#{$border-size} * 2)));
500
+ max-height: calc(100% - (var(--pep-spacing-2xl) * 2)); // calc(90vh - (#{variables.$dialog-header-height} + (#{variables.$content-padding} * 2) + (#{$border-size} * 2)));
499
501
  }
500
502
  }
501
503
  }