tangled
alpha
login
or
join now
flo-bit.dev
/
blento
your personal website on atproto - mirror
blento.app
20
fork
atom
overview
issues
pulls
pipelines
undo section fix
Florian
2 weeks ago
9ce5ba54
a29bf4ea
+2
-2
2 changed files
expand all
collapse all
unified
split
src
lib
cards
SectionCard
EditingSectionCard.svelte
SectionCard.svelte
+1
-1
src/lib/cards/SectionCard/EditingSectionCard.svelte
···
7
</script>
8
9
<div
10
-
class="line-clamp-1 inline-flex h-full w-full items-end rounded-md p-1 px-2 text-2xl font-semibold"
11
>
12
<PlainTextEditor bind:item key="text" class="line-clamp-1 w-full" />
13
</div>
···
7
</script>
8
9
<div
10
+
class="line-clamp-1 inline-flex h-full w-full items-center rounded-md p-1 px-2 text-2xl font-semibold"
11
>
12
<PlainTextEditor bind:item key="text" class="line-clamp-1 w-full" />
13
</div>
+1
-1
src/lib/cards/SectionCard/SectionCard.svelte
···
10
</script>
11
12
<div
13
-
class="line-clamp-1 inline-flex h-full w-full items-end rounded-md p-1 px-2 text-2xl font-semibold"
14
>
15
{item.cardData.text}
16
</div>
···
10
</script>
11
12
<div
13
+
class="line-clamp-1 inline-flex h-full w-full items-center rounded-md p-1 px-2 text-2xl font-semibold"
14
>
15
{item.cardData.text}
16
</div>