mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
fix test to meet expectation
This commit is contained in:
parent
73f0ee9826
commit
471a19ea53
@ -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";
|
||||
}
|
||||
|
||||
@ -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";
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user