Last active
July 9, 2016 09:44
-
-
Save alexvas123/29435b0edb16ec3cabffc957f9d97aa4 to your computer and use it in GitHub Desktop.
full-height-resize
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function heightDetect() { | |
$('.main-head').css('height', $(window).height()); | |
} | |
heightDetect(); | |
$(window).resize(function () { | |
heightDetect(); | |
}); | |
// HTML | |
.main-head | |
min-height: 620px | |
padding-top: rem(20) | |
position: relative |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment