@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
|
@@ -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:
|
|
493
|
+
width: calc(100vw - (var(--pep-spacing-2xl) * 2)) !important;
|
|
492
494
|
height: auto;
|
|
493
|
-
max-height: calc(
|
|
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
|
}
|