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
quick fix
Florian
4 weeks ago
bae16167
52338c09
+3
-1
1 changed file
expand all
collapse all
unified
split
src
lib
cards
BaseCard
BaseEditingCard.svelte
+3
-1
src/lib/cards/BaseCard/BaseEditingCard.svelte
···
254
254
<!-- svelte-ignore a11y_no_static_element_interactions -->
255
255
<div
256
256
class={[
257
257
-
'absolute inset-0 z-50 cursor-se-resize items-end justify-end overflow-hidden rounded-2xl group-focus-within:flex group-hover:flex',
257
257
+
'absolute pointer-events-none inset-0 z-50 items-end justify-end overflow-hidden rounded-2xl group-focus-within:flex group-hover:flex',
258
258
isResizing ? 'flex' : 'hidden'
259
259
]}
260
260
onpointerdown={handleResizeStart}
261
261
>
262
262
+
<div onpointerdown={handleResizeStart} class="pointer-events-auto cursor-se-resize">
262
263
<svg
263
264
xmlns="http://www.w3.org/2000/svg"
264
265
viewBox="0 0 24 24"
···
286
287
/>
287
288
</svg>
288
289
<span class="sr-only">Resize card</span>
290
290
+
</div>
289
291
</div>
290
292
{/if}
291
293
{/if}