mirror of https://github.com/sveltejs/svelte
9 lines
131 B
9 lines
131 B
8 years ago
|
<div class='large-screen'>animated</div>
|
||
|
|
||
|
<style>
|
||
|
@media (min-width: 400px) {
|
||
|
.large-screen {
|
||
|
display: block;
|
||
|
}
|
||
|
}
|
||
|
</style>
|