diff --git a/__tests__/fixtures/tailwind-output-with-explicit-screen-utilities.css b/__tests__/fixtures/tailwind-output-with-explicit-screen-utilities.css index f91424c60..28f535ded 100644 --- a/__tests__/fixtures/tailwind-output-with-explicit-screen-utilities.css +++ b/__tests__/fixtures/tailwind-output-with-explicit-screen-utilities.css @@ -1,21 +1,31 @@ +.example { + color: red; +} + +@media (min-width: 576px) { + .sm\:example { + color: red; + } +} + @media (min-width: 768px) { - .example { - color: red; - } + .md\:example { + color: red; + } } @media (min-width: 992px) { - .example { - color: red; - } + .lg\:example { + color: red; + } } @media (min-width: 1200px) { - .example { - color: red; - } + .xl\:example { + color: red; + } } .john { - content: "wick"; + content: "wick"; } \ No newline at end of file