1
0
Fork 0
mirror of synced 2024-09-28 07:11:40 +12:00

Merge pull request #1092 from Budibase/query-name-ui-update

I emphasised the query name input
This commit is contained in:
Martin McKeaveney 2021-02-05 10:54:06 +00:00 committed by GitHub
commit 3036378cc0

View file

@ -132,7 +132,8 @@
<header> <header>
<div class="input"> <div class="input">
<Input placeholder="✎ Edit Query Name" bind:value={query.name} /> <div class="label">Enter query name:</div>
<Input outline border bind:value={query.name} />
</div> </div>
{#if config} {#if config}
<div class="props"> <div class="props">
@ -216,7 +217,9 @@
<style> <style>
.input { .input {
width: 300px; width: 500px;
display: flex;
align-items: center;
} }
.select { .select {
@ -288,4 +291,12 @@
margin-top: -28px; margin-top: -28px;
z-index: -2; z-index: -2;
} }
.label {
font-family: var(--font-sans);
color: var(--grey-8);
font-size: var(--font-size-s);
margin-right: 8px;
font-weight: 600;
}
</style> </style>