This commit is contained in:
Sachin 2023-07-23 19:19:30 +00:00 committed by GitHub
commit a4b8fc2094
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 364 additions and 238 deletions

View file

@ -82,6 +82,7 @@
</slot>
</label>
{/if}
<div class="time-picker-inputs-wrapper">
<input
bind:this="{ref}"
bind:value
@ -106,10 +107,18 @@
on:blur
on:paste
/>
</div>
<slot />
</div>
</div>
</div>
{#if invalid}
<div class:bx--form-requirement="{true}">{invalidText}</div>
{/if}
</div>
<style>
.time-picker-inputs-wrapper{
display: flex;
flex-direction: row;
}
</style>