@dosgato/dialog 1.1.11 → 1.1.12
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/dist/Dialog.svelte +2 -3
- package/package.json +1 -1
package/dist/Dialog.svelte
CHANGED
|
@@ -121,9 +121,6 @@ $: describedby = [title ? labelid : undefined, descid].filter(isNotBlank).join('
|
|
|
121
121
|
@media (max-width: 2000px) { section.xl button.expand { display: none; } }
|
|
122
122
|
@media (max-width: 800px) { section.xl { width: 97vw; } }
|
|
123
123
|
|
|
124
|
-
@media (max-width: 800px) { .dialog-content { padding: 1.2em; } }
|
|
125
|
-
@media (max-width: 430px) { .dialog-content { padding: 0.6em; } }
|
|
126
|
-
|
|
127
124
|
header {
|
|
128
125
|
display: flex;
|
|
129
126
|
align-items: center;
|
|
@@ -151,6 +148,8 @@ $: describedby = [title ? labelid : undefined, descid].filter(isNotBlank).join('
|
|
|
151
148
|
max-height: calc(100vh - 7.5em);
|
|
152
149
|
max-height: calc(100dvh - 7.5em);
|
|
153
150
|
}
|
|
151
|
+
@media (max-width: 800px) { .dialog-content { padding: 1.2em; } }
|
|
152
|
+
@media (max-width: 430px) { .dialog-content { padding: 0.6em; } }
|
|
154
153
|
|
|
155
154
|
section.tiny .dialog-content, section.small .dialog-content {
|
|
156
155
|
padding: 0 1em;
|
package/package.json
CHANGED