Fix: Section title as a sticky header
This commit is contained in:
parent
f10b3f60c8
commit
9014c17a07
12 changed files with 136 additions and 22 deletions
5
frontend/src/lib/components/icons/ArtifactIcon.svelte
Normal file
5
frontend/src/lib/components/icons/ArtifactIcon.svelte
Normal file
|
@ -0,0 +1,5 @@
|
|||
<script>
|
||||
import IconBase from "./IconBase.svelte";
|
||||
</script>
|
||||
|
||||
<IconBase src="/assets/artifact.svg" alt="Artifact icon"/>
|
5
frontend/src/lib/components/icons/CommanderIcon.svelte
Normal file
5
frontend/src/lib/components/icons/CommanderIcon.svelte
Normal file
|
@ -0,0 +1,5 @@
|
|||
<script>
|
||||
import IconBase from "./IconBase.svelte";
|
||||
</script>
|
||||
|
||||
<IconBase src="/assets/commander.svg" alt="Commander icon"/>
|
5
frontend/src/lib/components/icons/CreatureIcon.svelte
Normal file
5
frontend/src/lib/components/icons/CreatureIcon.svelte
Normal file
|
@ -0,0 +1,5 @@
|
|||
<script>
|
||||
import IconBase from "./IconBase.svelte";
|
||||
</script>
|
||||
|
||||
<IconBase src="/assets/creature.svg" alt="Creature icon"/>
|
5
frontend/src/lib/components/icons/EnchantmentIcon.svelte
Normal file
5
frontend/src/lib/components/icons/EnchantmentIcon.svelte
Normal file
|
@ -0,0 +1,5 @@
|
|||
<script>
|
||||
import IconBase from "./IconBase.svelte";
|
||||
</script>
|
||||
|
||||
<IconBase src="/assets/enchantment.svg" alt="Enchantment icon"/>
|
5
frontend/src/lib/components/icons/InstantIcon.svelte
Normal file
5
frontend/src/lib/components/icons/InstantIcon.svelte
Normal file
|
@ -0,0 +1,5 @@
|
|||
<script>
|
||||
import IconBase from "./IconBase.svelte";
|
||||
</script>
|
||||
|
||||
<IconBase src="/assets/instant.svg" alt="Instant icon"/>
|
5
frontend/src/lib/components/icons/LandIcon.svelte
Normal file
5
frontend/src/lib/components/icons/LandIcon.svelte
Normal file
|
@ -0,0 +1,5 @@
|
|||
<script>
|
||||
import IconBase from "./IconBase.svelte";
|
||||
</script>
|
||||
|
||||
<IconBase src="/assets/land.svg" alt="Land icon"/>
|
|
@ -0,0 +1,5 @@
|
|||
<script>
|
||||
import IconBase from "./IconBase.svelte";
|
||||
</script>
|
||||
|
||||
<IconBase src="/assets/planeswalker.svg" alt="Planeswalker icon"/>
|
5
frontend/src/lib/components/icons/SorceryIcon.svelte
Normal file
5
frontend/src/lib/components/icons/SorceryIcon.svelte
Normal file
|
@ -0,0 +1,5 @@
|
|||
<script>
|
||||
import IconBase from "./IconBase.svelte";
|
||||
</script>
|
||||
|
||||
<IconBase src="/assets/sorcery.svg" alt="Sorcery icon"/>
|
Loading…
Add table
Add a link
Reference in a new issue