your personal website on atproto - mirror blento.app

quick fix

Florian bae16167 52338c09

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