|
|
@ -18,8 +18,21 @@ |
|
|
<section> |
|
|
<section> |
|
|
Database Name |
|
|
Database Name |
|
|
<input class="uk-input" type="text" bind:value={databaseName} /> |
|
|
<input class="uk-input" type="text" bind:value={databaseName} /> |
|
|
<div class="actions"> |
|
|
<footer> |
|
|
<ActionButton alert on:click={onClosed}>Cancel</ActionButton> |
|
|
<ActionButton alert on:click={onClosed}>Cancel</ActionButton> |
|
|
<ActionButton disabled={!databaseName} on:click={createDatabase}>Save</ActionButton> |
|
|
<ActionButton disabled={!databaseName} on:click={createDatabase}> |
|
|
</div> |
|
|
Save |
|
|
|
|
|
</ActionButton> |
|
|
|
|
|
</footer> |
|
|
</section> |
|
|
</section> |
|
|
|
|
|
|
|
|
|
|
|
<style> |
|
|
|
|
|
footer { |
|
|
|
|
|
position: absolute; |
|
|
|
|
|
padding: 20px; |
|
|
|
|
|
width: 100%; |
|
|
|
|
|
bottom: 0; |
|
|
|
|
|
left: 0; |
|
|
|
|
|
background: #fafafa; |
|
|
|
|
|
} |
|
|
|
|
|
</style> |
|
|
|