|
|
|
@ -34,7 +34,9 @@ |
|
|
|
<Modal id={title} bind:this={theModal}> |
|
|
|
<h2>{title}</h2> |
|
|
|
<Spacer extraLarge /> |
|
|
|
<slot class="rows">{body}</slot> |
|
|
|
<div class="content"> |
|
|
|
<slot class="rows">{body}</slot> |
|
|
|
</div> |
|
|
|
<Spacer extraLarge /> |
|
|
|
<div class="modal-footer"> |
|
|
|
<Button red wide on:click={ok}>{okText}</Button> |
|
|
|
@ -54,4 +56,9 @@ |
|
|
|
display: grid; |
|
|
|
grid-gap: var(--spacing-s); |
|
|
|
} |
|
|
|
|
|
|
|
.content { |
|
|
|
white-space: normal; |
|
|
|
font-size: var(--font-size-s); |
|
|
|
} |
|
|
|
</style> |
|
|
|
|