diff --git a/frontend/web/css/style.css b/frontend/web/css/style.css index 0fbddec..a1022e0 100755 --- a/frontend/web/css/style.css +++ b/frontend/web/css/style.css @@ -2121,6 +2121,10 @@ p.right{text-align: right;} @media (max-width: 991px) { .menu .container { padding: 0px; + display: none; + } + .menu .container.showed{ + display: block; } .menu .container ul { padding: 13px 0px; diff --git a/frontend/web/js/script.js b/frontend/web/js/script.js index cfc984f..55cd588 100755 --- a/frontend/web/js/script.js +++ b/frontend/web/js/script.js @@ -114,6 +114,7 @@ $(document).ready( ); $(".hidemenu").click(function(){ $(this).toggleClass("show"); + $(this).parent().findClass(".container").toggleClass("showed"); }); } ); \ No newline at end of file -- libgit2 0.21.4