We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec33c1b commit 9b4be60Copy full SHA for 9b4be60
site/docs/overview/getting-started.md
@@ -32,7 +32,7 @@ A stylesheet can be made by adding a `.css.ts` file into your project.
32
For example:
33
34
```ts compiled
35
-// app.css.ts
+// styles.css.ts
36
import { style } from '@vanilla-extract/css';
37
38
export const container = style({
@@ -53,7 +53,7 @@ By importing the style we receive the scoped class name that was generated and w
53
54
55
// app.ts
56
-import { container } from './app.css.ts';
+import { container } from './styles.css.ts';
57
58
document.write(`
59
<section class="${container}">
0 commit comments