0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00
svelte/test/css/samples/cascade-false-global-keyframes/expected.css

14 lines
195 B
CSS
Raw Normal View History

@keyframes why {
0% { color: red; }
100% { color: blue; }
}
2017-06-25 18:57:27 +02:00
.animated[svelte-90785995] {
animation: why 2s;
}
2017-06-25 18:57:27 +02:00
.also-animated[svelte-90785995] {
animation: not-defined-here 2s;
}