Skip to content

Commit 384037b

Browse files
committed
Clean up css
1 parent 546fb1f commit 384037b

File tree

5 files changed

+3
-22
lines changed

5 files changed

+3
-22
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ TODO:
99
- remove React-isms (useX)
1010
- clean up console logs
1111
- layout shifting during transition
12+
- instead of shared-element class, data- attributes?
13+
- better way instead of having to register per-page -- possibly call prepare functions with {from, to} allowlist

src/app.css

+1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@
55

66
.shared-element {
77
contain: paint;
8+
page-transition-tag: var(--transition-tag);
89
}

src/lib/Icon.svelte

-6
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,3 @@
1717
/>
1818
</div>
1919
</div>
20-
21-
<style>
22-
img {
23-
page-transition-tag: var(--transition-tag);
24-
}
25-
</style>

src/lib/ListItem.svelte

-6
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,3 @@
1111
<div class="text-xl shared-element" style:--transition-tag="h-{item.name}">{item.name}</div>
1212
</a>
1313
</li>
14-
15-
<style>
16-
div {
17-
page-transition-tag: var(--transition-tag);
18-
}
19-
</style>

src/routes/fruits/[name].svelte

-10
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,3 @@
3232
<Nutrition {amountPer} {nutrition} />
3333
</div>
3434
</div>
35-
36-
<style>
37-
img {
38-
page-transition-tag: var(--transition-tag);
39-
}
40-
41-
h1 {
42-
page-transition-tag: var(--transition-tag);
43-
}
44-
</style>

0 commit comments

Comments
 (0)