@dosgato/dialog 1.1.4 → 1.1.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.
- package/dist/Dialog.svelte +11 -0
- package/package.json +1 -1
package/dist/Dialog.svelte
CHANGED
|
@@ -106,6 +106,11 @@ $: describedby = [title ? labelid : undefined, descid].filter(isNotBlank).join('
|
|
|
106
106
|
max-width: 2000px;
|
|
107
107
|
}
|
|
108
108
|
|
|
109
|
+
section {
|
|
110
|
+
container-type: inline-size;
|
|
111
|
+
container-name: dosgato-dialog-section
|
|
112
|
+
}
|
|
113
|
+
|
|
109
114
|
@media (max-width: 430px) {
|
|
110
115
|
section.tiny, section.small, section.normal, section.large, section.xl {
|
|
111
116
|
width: 95vw;
|
|
@@ -182,6 +187,12 @@ $: describedby = [title ? labelid : undefined, descid].filter(isNotBlank).join('
|
|
|
182
187
|
}
|
|
183
188
|
}
|
|
184
189
|
|
|
190
|
+
@container dosgato-dialog-section (max-width: 350px) {
|
|
191
|
+
footer.actions {
|
|
192
|
+
padding: 0.5em;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
|
|
185
196
|
.header-buttons {
|
|
186
197
|
position: absolute;
|
|
187
198
|
top: 0.1em;
|
package/package.json
CHANGED