Skip to content

Commit 7e70a28

Browse files
committed
Add CHANGELOG notes for v0.0.9
1 parent a17a9d6 commit 7e70a28

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,30 @@
22

33
All notable changes to the "CSS Nesting Syntax Highlighting" extension will be documented in this file.
44

5+
## v0.0.9
6+
7+
_2024-02-24_
8+
9+
### Added
10+
11+
- Added tokens for `@container` syntax highlighting.
12+
13+
```css
14+
/* Nested @container example */
15+
@container summary (width > 400px) {
16+
@container (min-width: 800px) {
17+
.card {
18+
margin: 50px;
19+
}
20+
@container (min-width: calc( var(--width) * 1rem)) {
21+
.card {
22+
margin: 0;
23+
}
24+
}
25+
}
26+
}
27+
```
28+
529
## v0.0.8
630

731
_2024-02-22_

0 commit comments

Comments
 (0)