Guest User

Untitled

a guest
Jul 20th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. //Js
  2. function heightDetect() {
  3. $(".main_head").css("height", $(window).height());
  4. };
  5.  
  6. heightDetect();
  7.  
  8. $(window).resize(function() {
  9. heightDetect();
  10. });
  11.  
  12. //SASS
  13. .main_head
  14. min-height: 480px
Add Comment
Please, Sign In to add comment