1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

removing form-controls

This commit is contained in:
Victoria Sloan 2020-09-01 21:35:22 +01:00
parent 7b32fb78c5
commit 74037ae36f
2 changed files with 13 additions and 19 deletions

View file

@ -27,9 +27,7 @@
<div class="bb-margin-m">
<Label small forAttr={'datepicker-label'}>{label}</Label>
<div class="uk-form-controls">
<input
class="uk-input uk-form-width-{width} uk-form-{size}"
bind:this={input} />
</div>
<input
class="uk-input uk-form-width-{width} uk-form-{size}"
bind:this={input} />
</div>

View file

@ -26,21 +26,17 @@
<div class="bb-margin-xl block-field">
<Label small forAttr={'page'}>Page</Label>
<div class="uk-form-controls">
<select class="budibase__input" bind:value={pageName}>
{#each Object.keys(pages) as page}
<option value={page}>{page}</option>
{/each}
</select>
</div>
<select class="budibase__input" bind:value={pageName}>
{#each Object.keys(pages) as page}
<option value={page}>{page}</option>
{/each}
</select>
{#if components.length > 0}
<Label small forAttr={'component'}>Component</Label>
<div class="uk-form-controls">
<select class="budibase__input" bind:value>
{#each components as component}
<option value={component._id}>{component._id}</option>
{/each}
</select>
</div>
<select class="budibase__input" bind:value>
{#each components as component}
<option value={component._id}>{component._id}</option>
{/each}
</select>
{/if}
</div>