fix expectations

This commit is contained in:
Patrick Heller 💩 2017-11-03 23:56:25 +01:00
parent 76eb4beb03
commit 42a7038aa4

View File

@ -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";
}