mirror of https://github.com/sveltejs/svelte
parent
da9af1dfbf
commit
a85b6002a7
@ -0,0 +1,9 @@
|
||||
|
||||
@keyframes svelte-4112859982-why {
|
||||
0% { color: red; }
|
||||
100% { color: blue; }
|
||||
}
|
||||
|
||||
[svelte-4112859982].animated, [svelte-4112859982] .animated {
|
||||
animation: svelte-4112859982-why 2s;
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
<div class='animated'>animated</div>
|
||||
|
||||
<style>
|
||||
@keyframes why {
|
||||
0% { color: red; }
|
||||
100% { color: blue; }
|
||||
}
|
||||
|
||||
.animated {
|
||||
animation: why 2s;
|
||||
}
|
||||
</style>
|
@ -0,0 +1,6 @@
|
||||
|
||||
@media (min-width: 400px) {
|
||||
[svelte-2352010302].large-screen, [svelte-2352010302] .large-screen {
|
||||
display: block;
|
||||
}
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
<div class='large-screen'>animated</div>
|
||||
|
||||
<style>
|
||||
@media (min-width: 400px) {
|
||||
.large-screen {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
</style>
|
Loading…
Reference in new issue