This commit is contained in:
Roman Pyrih
2025-11-12 12:58:08 +01:00
parent e709fc0cb5
commit 52b0b71a5c
4 changed files with 4 additions and 4 deletions

View File

@@ -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;

View File

@@ -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

View File

@@ -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;