simplify adapted example

pull/765/head
Rich Harris 8 years ago
parent 9d8f4d341d
commit 1f7349c5be

@ -1 +1 @@
@media only screen and (min-width: 400px){[svelte-xyz].large-screen,[svelte-xyz] .large-screen{display:block}} @media only screen and (min-width: 400px){div[svelte-xyz],[svelte-xyz] div{color:red}}

@ -1,9 +1,9 @@
<div class='large-screen'>animated</div> <div>hello</div>
<style> <style>
@media only screen and (min-width: 400px) { @media only screen and (min-width: 400px) {
.large-screen { div {
display: block; color: red;
} }
} }
</style> </style>
Loading…
Cancel
Save