From 42a7038aa433aa3bfedaeedc98e57b260b228a36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Heller=20=F0=9F=92=A9?= Date: Fri, 3 Nov 2017 23:56:25 +0100 Subject: [PATCH] fix expectations --- ...-output-with-explicit-screen-utilities.css | 30 ++++++++++++------- 1 file changed, 20 insertions(+), 10 deletions(-) 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