rename panel headers

This commit is contained in:
Ruben Fiszel
2023-02-19 22:47:30 +01:00
parent 71d6dad37c
commit 75edeab35e
2 changed files with 4 additions and 4 deletions

View File

@@ -117,13 +117,13 @@
<div class="mb-2">
<div class="mt-1 font-semibold">{id}</div>
{#if $app?.css?.[type]?.[id]}
<span class="text-xs">style</span>
<span class="text-xs">Style</span>
<input
type="text"
on:focus={() => (isCustom[type] = true)}
bind:value={$app.css[type][id].style}
/>
<span class="text-xs">class</span>
<span class="text-xs">Tailwind classes</span>
<input
type="text"
on:focus={() => (isCustom[type] = true)}

View File

@@ -173,9 +173,9 @@
{#each Object.entries(component.customCss ?? {}) as [key, value]}
<div class="mb-2">
<div class="mt-1 font-semibold">{key}</div>
<span class="text-xs">style</span>
<span class="text-xs">Style</span>
<input type="text" bind:value={value.style} />
<span class="text-xs">class</span>
<span class="text-xs">Tailwind classes</span>
<input type="text" bind:value={value.class} />
</div>
{/each}