Skip to content

Commit 31e219d

Browse files
committed
refactor: the output is a little different
1 parent 5719df0 commit 31e219d

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

packages/postcss-if-function/README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ console.log(result.css);
4141
```css
4242
.example {
4343
color: red;
44-
font-size: 1rem;
4544
}
46-
4745
@media (max-width: 768px) {
4846
.example {
4947
color: blue;
5048
}
5149
}
52-
50+
.example {
51+
font-size: 1rem;
52+
}
5353
@supports (display: grid) {
5454
.example {
5555
font-size: 1.2rem;
@@ -164,7 +164,6 @@ module.exports = {
164164
.responsive {
165165
width: 50%;
166166
}
167-
168167
@media (max-width: 768px) {
169168
.responsive {
170169
width: 100%;
@@ -184,7 +183,6 @@ module.exports = {
184183
.grid {
185184
display: block;
186185
}
187-
188186
@supports (display: grid) {
189187
.grid {
190188
display: grid;

0 commit comments

Comments
 (0)