I\'m new to AngularJS so please bear with me. I\'m using Angular Material Design and I have difficulties in identifying a way to efficiently do responsive grids.
Please
Check out the "Responsive Flex & Offset Attributes" section here: https://material.angularjs.org/#/layout/options
Basically, you can use these options:
So change your:
<div layout="column" flex="66">
to
<div layout="column" flex-gt-sm="66">
And that div will only use the 66 width when greater than small (mobile)