Skip to content

Commit befee67

Browse files
committed
fix7 won't be able to catch all cases, so i'm removing it
1 parent 90f62e4 commit befee67

File tree

4 files changed

+0
-70
lines changed

4 files changed

+0
-70
lines changed

README.md

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -35,26 +35,6 @@
3535
}
3636
```
3737

38-
## bug [7](https://github.com/philipwalton/flexbugs#7-flex-basis-doesnt-account-for-box-sizingborder-box)
39-
### Input
40-
41-
```css
42-
div {
43-
box-sizing: border-box;
44-
flex: 0 0 100%;
45-
}
46-
```
47-
48-
### Output
49-
50-
```css
51-
div {
52-
box-sizing: border-box;
53-
flex: 0 0 auto;
54-
width: 100%;
55-
}
56-
```
57-
5838
## bug [8.1.a](https://github.com/philipwalton/flexbugs/blob/master/README.md#8-flex-basis-doesnt-support-calc)
5939
### Input
6040

bugs/bug7.js

Lines changed: 0 additions & 25 deletions
This file was deleted.

index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
var postcss = require('postcss');
22
var bug4 = require('./bugs/bug4');
3-
var bug7 = require('./bugs/bug7');
43
var bug81a = require('./bugs/bug81a');
54

65
module.exports = postcss.plugin('postcss-flexbugs-fixes', function(opts) {
@@ -9,7 +8,6 @@ module.exports = postcss.plugin('postcss-flexbugs-fixes', function(opts) {
98
return function(css) {
109
css.eachDecl(function(d) {
1110
bug4(d);
12-
bug7(d);
1311
bug81a(d);
1412
});
1513
};

specs/bug7Spec.js

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)