removing form-controls
This commit is contained in:
parent
eee0ef8a53
commit
d615f3651f
|
@ -27,9 +27,7 @@
|
||||||
|
|
||||||
<div class="bb-margin-m">
|
<div class="bb-margin-m">
|
||||||
<Label small forAttr={'datepicker-label'}>{label}</Label>
|
<Label small forAttr={'datepicker-label'}>{label}</Label>
|
||||||
<div class="uk-form-controls">
|
|
||||||
<input
|
<input
|
||||||
class="uk-input uk-form-width-{width} uk-form-{size}"
|
class="uk-input uk-form-width-{width} uk-form-{size}"
|
||||||
bind:this={input} />
|
bind:this={input} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
|
@ -26,21 +26,17 @@
|
||||||
|
|
||||||
<div class="bb-margin-xl block-field">
|
<div class="bb-margin-xl block-field">
|
||||||
<Label small forAttr={'page'}>Page</Label>
|
<Label small forAttr={'page'}>Page</Label>
|
||||||
<div class="uk-form-controls">
|
|
||||||
<select class="budibase__input" bind:value={pageName}>
|
<select class="budibase__input" bind:value={pageName}>
|
||||||
{#each Object.keys(pages) as page}
|
{#each Object.keys(pages) as page}
|
||||||
<option value={page}>{page}</option>
|
<option value={page}>{page}</option>
|
||||||
{/each}
|
{/each}
|
||||||
</select>
|
</select>
|
||||||
</div>
|
|
||||||
{#if components.length > 0}
|
{#if components.length > 0}
|
||||||
<Label small forAttr={'component'}>Component</Label>
|
<Label small forAttr={'component'}>Component</Label>
|
||||||
<div class="uk-form-controls">
|
|
||||||
<select class="budibase__input" bind:value>
|
<select class="budibase__input" bind:value>
|
||||||
{#each components as component}
|
{#each components as component}
|
||||||
<option value={component._id}>{component._id}</option>
|
<option value={component._id}>{component._id}</option>
|
||||||
{/each}
|
{/each}
|
||||||
</select>
|
</select>
|
||||||
</div>
|
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue