Browse Source

chore: format

rdavis 10 months ago
parent
commit
ca3f8e6cb5
1 changed files with 5 additions and 1 deletions
  1. 5 1
      src/lib/components/common/Collapsible.svelte

+ 5 - 1
src/lib/components/common/Collapsible.svelte

@@ -20,7 +20,11 @@
 	<button on:click={() => (open = !open)}>
 		<slot name="head" />
 	</button>
-	<div bind:this={contentElement} class={`collapsible-content ${open ? 'mt-1' : '!mt-0'}`} style="max-height: {maxHeight};">
+	<div
+		bind:this={contentElement}
+		class={`collapsible-content ${open ? 'mt-1' : '!mt-0'}`}
+		style="max-height: {maxHeight};"
+	>
 		<slot name="content" />
 	</div>
 </div>