Skip to content

Commit

Permalink
Update readme with layer example (#489)
Browse files Browse the repository at this point in the history
  • Loading branch information
romainmenke committed Mar 22, 2022
1 parent 1c215c0 commit ee6063f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -81,6 +81,8 @@ postcss()

@import "bar.css" (min-width: 25em);

@import 'baz.css' layer(baz-layer);

body {
background: black;
}
Expand All @@ -98,6 +100,10 @@ will give you:
/* ... content of css/bar.css */
}

@layer baz-layer {
/* ... content of css/baz.css */
}

body {
background: black;
}
Expand Down

0 comments on commit ee6063f

Please sign in to comment.