@progressive-development/pd-dialog 0.1.55 → 0.1.56
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 +1 -1
- package/src/PdPopup.js +1 -1
- package/src/PdPopupDialog.js +1 -1
package/package.json
CHANGED
package/src/PdPopup.js
CHANGED
|
@@ -40,7 +40,7 @@ export class PdPopup extends LitElement {
|
|
|
40
40
|
background-color: var(--pd-popup-modal-bg-rgba, rgba(175, 193, 210, 0.8));
|
|
41
41
|
|
|
42
42
|
/* specific for PdPopup, abobe also used for PdPopupDialog */
|
|
43
|
-
display: none; /* Hidden by default */
|
|
43
|
+
display: var(--pd-popup-default-display, none); /* Hidden by default */
|
|
44
44
|
padding-top: 100px; /* Location of the box */
|
|
45
45
|
}
|
|
46
46
|
|