Skip to content

Commit e7fcdad

Browse files
committed
Fixed typos
1 parent 04ac224 commit e7fcdad

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tutorials/update-css-files/02-write-custom-plugins.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Currently, native CSS doesn't support using `var()` in media queries. So express
7474

7575
```css
7676
/* Before */
77-
@media media {
77+
@media desktop {
7878
/* ... */
7979
}
8080

@@ -427,8 +427,8 @@ Run `.update-test-fixtures.sh` once more. You'll see that `@value` imports and v
427427
grid-template-rows: auto 1fr;
428428
height: calc(100% - navigation-menu-height);
429429
overflow-y: auto;
430-
- padding: var(--spacing-600) var(--spacing-400);
431-
+ padding: spacing-600 spacing-400;
430+
- padding: spacing-600 spacing-400;
431+
+ padding: var(--spacing-600) var(--spacing-400);
432432
scrollbar-gutter: stable;
433433
}
434434

0 commit comments

Comments
 (0)