Here is jsfiddle
They seem to md-optionsinterfere with the body brand when the margin-margin directive is applied.
HTML:
<body style="background-color: orange;" layout="row" ng-controller="AppCtrl" ng-app="StarterApp" layout-margin layout-fill>
<div flex="35" class="md-whiteframe-z1 white">
<md-select placeholder="Pick" ng-model="someVal">
<md-option value="1">One</md-option>
<md-option value="2">Two</md-option>
</md-select>
</div>
</body>
How can I avoid this annoying collision? The edge should be.
source
share