Skip to content

Commit cbea7b5

Browse files
author
Rich Harris
committed
tidy up
1 parent 94ab9a4 commit cbea7b5

File tree

4 files changed

+9
-16
lines changed

4 files changed

+9
-16
lines changed

content/tutorial/03-advanced-svelte/02-transitions/01-transition/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,7 @@ First, import the `fade` function from `svelte/transition`...
1818

1919
```svelte
2020
/// file: App.svelte
21-
<p +++transition:fade+++>Fades in and out</p>
21+
<p +++transition:fade+++>
22+
Fades in and out
23+
</p>
2224
```

content/tutorial/03-advanced-svelte/02-transitions/01-transition/app-a/src/lib/App.svelte

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,7 @@
88
</label>
99

1010
{#if visible}
11-
<p>Fades in and out</p>
11+
<p>
12+
Fades in and out
13+
</p>
1214
{/if}

content/tutorial/03-advanced-svelte/02-transitions/01-transition/app-b/src/lib/App.svelte

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,7 @@
99
</label>
1010

1111
{#if visible}
12-
<p transition:fade>Fades in and out</p>
12+
<p transition:fade>
13+
Fades in and out
14+
</p>
1315
{/if}

content/tutorial/03-advanced-svelte/02-transitions/02-adding-parameters-to-transitions/app-a/src/lib/App.svelte

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)