Reorder CSS rule by relevance.

This commit is contained in:
Rodrigo Girão Serrão
2022-12-20 11:16:31 +00:00
parent a63920da39
commit 6451d192a6
2 changed files with 2 additions and 2 deletions

View File

@@ -11,8 +11,8 @@ Static {
}
#box1 {
background: darkcyan;
layer: above;
background: darkcyan;
}
#box2 {

View File

@@ -503,7 +503,7 @@ However, in this case, both `#box1` and `#box2` are assigned to layers which def
=== "layers.css"
```sass hl_lines="3 15 19"
```sass hl_lines="3 14 19"
--8<-- "docs/examples/guide/layout/layers.css"
```