Commit aff399413acfc9ffc38f4144a63f9cb71ab9f307

Authored by Eugeny Galkovskiy
1 parent 314969a7

123

Showing 2 changed files with 5 additions and 0 deletions   Show diff stats
frontend/web/css/style.css
... ... @@ -2121,6 +2121,10 @@ p.right{text-align: right;}
2121 2121 @media (max-width: 991px) {
2122 2122 .menu .container {
2123 2123 padding: 0px;
  2124 + display: none;
  2125 + }
  2126 + .menu .container.showed{
  2127 + display: block;
2124 2128 }
2125 2129 .menu .container ul {
2126 2130 padding: 13px 0px;
... ...
frontend/web/js/script.js
... ... @@ -114,6 +114,7 @@ $(document).ready(
114 114 );
115 115 $(".hidemenu").click(function(){
116 116 $(this).toggleClass("show");
  117 + $(this).parent().findClass(".container").toggleClass("showed");
117 118 });
118 119 }
119 120 );
120 121 \ No newline at end of file
... ...