Save
This commit is contained in:
@@ -49,7 +49,7 @@
|
|||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 768px) {
|
@media only screen and (min-width: 992px) {
|
||||||
#search_widget {
|
#search_widget {
|
||||||
float: right;
|
float: right;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ $(document).ready(function () {
|
|||||||
});
|
});
|
||||||
|
|
||||||
var isMobile = function() {
|
var isMobile = function() {
|
||||||
return $(window).width() < 768;
|
return $(window).width() < 992;
|
||||||
};
|
};
|
||||||
var autocompletePosition = function() {
|
var autocompletePosition = function() {
|
||||||
return {
|
return {
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -17,7 +17,7 @@ jQuery(window).on('load', function () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function onScroll() {
|
function onScroll() {
|
||||||
if ($(window).width() <= 767) {
|
if ($(window).width() < 992) {
|
||||||
$box.removeClass('box_fixed');
|
$box.removeClass('box_fixed');
|
||||||
$('#header').css('margin-bottom', 0);
|
$('#header').css('margin-bottom', 0);
|
||||||
return;
|
return;
|
||||||
|
|||||||
Reference in New Issue
Block a user