header css

This commit is contained in:
2024-02-27 11:15:47 +01:00
parent 23cd84ed95
commit af3fd55599
8 changed files with 1041 additions and 895 deletions

View File

@@ -19,6 +19,21 @@
jQuery(document).ready(function($){
$('.close-block').click(function(){
$(this).parent().fadeOut();
if(mobile == true){
$("body").css("overflow","auto");
}
});
$('.open-block').click(function(){
$(this).prev().css("display","grid");
if(mobile == true){
$("body").css("overflow","hidden");
}
});
});