min-height auto property doesn’t work in qq browsers
24 Dec 2016Min-height will not work when your code like:
1
2
3
4
5
  div
    min-height 100%
    @media (max-width: $response-phone)
       width auto
       min-height auto
so the solution is use display table like:
1
2
3
4
5
6
  div
     display table
     height inherit
     width 100%
     height auto
     min-height: auto