@juspay/svelte-ui-components 1.33.0 → 1.34.0
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/Modal/Modal.svelte +4 -0
- package/package.json +1 -1
package/dist/Modal/Modal.svelte
CHANGED
|
@@ -172,6 +172,7 @@ onDestroy(() => {
|
|
|
172
172
|
flex-direction: column;
|
|
173
173
|
border-radius: var(--modal-border-radius, 0px);
|
|
174
174
|
overflow: var(--modal-content-overflow, auto);
|
|
175
|
+
border-top: var(--modal-content-border-top);
|
|
175
176
|
}
|
|
176
177
|
|
|
177
178
|
.slot-content {
|
|
@@ -300,6 +301,9 @@ onDestroy(() => {
|
|
|
300
301
|
align-items: center;
|
|
301
302
|
flex: 1;
|
|
302
303
|
font-size: var(--header-text-size, 16px);
|
|
304
|
+
font-weight: var(--modal-header-text-weight);
|
|
305
|
+
line-height: var(--modal-header-text-line-height);
|
|
306
|
+
letter-spacing: var(--modal-header-text-letter-spacing);
|
|
303
307
|
}
|
|
304
308
|
|
|
305
309
|
.header-left-img,
|