Still, any way to make the new bootstrap-like Grid responsive?
I’ve created a skeleton project in Visual Studio 2017 (Ionic CLI v.3.7.0).
The documentation says, that the following columns:
<ion-grid>
<ion-row>
<ion-col col-12 col-sm>
1 of 4
</ion-col>
<ion-col col-12 col-sm>
2 of 4
</ion-col>
<ion-col col-12 col-sm>
3 of 4
</ion-col>
<ion-col col-12 col-sm>
4 of 4
</ion-col>
</ion-row>
</ion-grid>
should become rows on small screen sizes, but they never do (for me, neither in Chrome, nor with Cordova Simulate).
Am I missing something? Is there any working example of a responsive grid?