1

I updated to angular-material 0.9 and now when I open md-select it cuts off the background to the edge of the content. Is there some way to avoid this?

http://codepen.io/anon/pen/yNOypa

<div class="background">
<div layout="column" layout-align="center center" flex>
  <md-select placeholder="Pick">
    <md-option value="1">One</md-option>
    <md-option value="2">Two</md-option>
  </md-select>
    </div>
  <p>The background ends at the content when md-select is open</p>
</div>
EmptyPockets
  • 727
  • 1
  • 7
  • 23

1 Answers1

1

Try with changing

 height:100%;

to

height:100vh;

A similar question: Make div 100% height of browser window

Community
  • 1
  • 1
user2314737
  • 27,088
  • 20
  • 102
  • 114