i'm trying to make a slider with just horizontal scrollbar with cards in that, so to achieve that i'm trying to scroll the layout="row" inside with ng-repeat inside
https://codepen.io/williamscott701/pen/GmLada
<body ng-app="myApp" ng-cloak ng-controller="ProductController">
<md-content class=" md-padding " layout="column ">
<div layout="row">
<div flex="33" ng-repeat="y in [1,2,3,4,5,6,7,8,9,10,11] ">
<md-card>[ flex = 33 ]
<md-card>
</div>
</div>
</md-content>
</body>
i dont know where it's going wrong
Thanks