Bug 1609991 Comment 0 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

For this rule:

```
.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
```
change `flex: 0 0 100%;` to be ` flex: 0 0 auto;`
For this rule:

```
.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
```
change `flex: 0 0 100%;` to be ` flex: 0 0 auto;` for mobile

Back to Bug 1609991 Comment 0