Skip to content

Commit 4aa18c9

Browse files
authored
Fix little typo (#9861)
1 parent 30df062 commit 4aa18c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/variants.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -358,14 +358,14 @@ test('custom addVariant with more complex media query params', () => {
358358
],
359359
plugins: [
360360
function ({ addVariant }) {
361-
addVariant('magic', '@media screen and (max-wdith: 600px)')
361+
addVariant('magic', '@media screen and (max-width: 600px)')
362362
},
363363
],
364364
}
365365

366366
return run('@tailwind components;@tailwind utilities', config).then((result) => {
367367
return expect(result.css).toMatchFormattedCss(css`
368-
@media screen and (max-wdith: 600px) {
368+
@media screen and (max-width: 600px) {
369369
.magic\:text-center {
370370
text-align: center;
371371
}

0 commit comments

Comments
 (0)