mirror of https://github.com/sveltejs/svelte
Merge pull request #1200 from leereamsnyder/process-atsupports
process code in @supports queries with cascade: falsepull/1218/head
commit
91a04cfb88
@ -0,0 +1,3 @@
|
||||
export default {
|
||||
cascade: false
|
||||
};
|
@ -0,0 +1 @@
|
||||
@supports (display: grid){.maybe-grid[svelte-xyz]{display:grid}}
|
@ -0,0 +1,9 @@
|
||||
<div class='maybe-grid'>something with a nice layout</div>
|
||||
|
||||
<style>
|
||||
@supports (display: grid) {
|
||||
.maybe-grid {
|
||||
display: grid;
|
||||
}
|
||||
}
|
||||
</style>
|
Loading…
Reference in new issue