📝 docs: Fix Task 7 Step 2 grep to match CSS-nesting unwrap
This commit is contained in:
@@ -512,7 +512,7 @@ Expected: completes with no errors. The output file `static/dist/theme.css` is u
|
||||
The build unwraps CSS-nesting `&__heading` into `__heading.services-list` (no literal `.services-list__heading` is emitted). Use a fixed-string search that matches the un-nested form:
|
||||
|
||||
```bash
|
||||
grep -cF "services-list__heading" static/dist/theme.css
|
||||
grep -cF "__heading.services-list" static/dist/theme.css
|
||||
```
|
||||
|
||||
Expected: `1` or more. (Note: on Windows Git-Bash, prefer `grep -F` because POSIX `\\:` escapes are stripped before reaching grep.)
|
||||
|
||||
Reference in New Issue
Block a user