fix test to meet expectation

This commit is contained in:
Patrick Heller 💩 2017-11-03 23:24:27 +01:00
parent 73f0ee9826
commit 471a19ea53
2 changed files with 26 additions and 6 deletions

View File

@ -1,12 +1,11 @@
@tailwind preflight;
@tailwind utilities;
@responsive {
.example {
@apply .font-bold;
color: config('colors.red');
color: red;
}
}
@tailwind screen-utilities;
.john {
content: "wick";
}

View File

@ -0,0 +1,21 @@
@media (min-width: 768px) {
.example {
color: red;
}
}
@media (min-width: 992px) {
.example {
color: red;
}
}
@media (min-width: 1200px) {
.example {
color: red;
}
}
.john {
content: "wick";
}