Clean up of style

This commit is contained in:
2024-04-11 10:40:23 -04:00
parent 2b61b8f4a5
commit 21ee101007

View File

@@ -137,7 +137,7 @@ async function handle_submit_form_lead_update(event) {
z-50
flex
flex-col
gap-4
gap-2
justify-stretch
max-h-full
min-w-full
@@ -345,8 +345,6 @@ async function handle_submit_form_lead_update(event) {
<option value={4}>4</option>
<option value={5}>5 - Lowest</option>
</select>
</Element_ae_crud>
</div>
@@ -415,7 +413,7 @@ async function handle_submit_form_lead_update(event) {
id="exhibitor_notes"
name="exhibitor_notes"
cols="70"
rows="10"
rows="5"
placeholder="Staff notes"
class="textarea my-1"
on:change={() => {
@@ -484,8 +482,8 @@ async function handle_submit_form_lead_update(event) {
Response type not yet configured
{/if}
<!-- Show or hide the description of the question. This is often just the full version of the question because otherwise there is not enough space. -->
{#if ($events_loc.leads.show_content__custom_question_descriptions)}
<span class="text-xs text-slate-500">{leads_custom_question.description}</span>
{#if ($events_loc.leads.show_content__custom_question_descriptions && leads_custom_question?.description)}
<span class="text-xs text-slate-500">{leads_custom_question?.description ?? ''}</span>
{/if}
</div>
{/each}