[FIX] web_responsive: Hide search panel on small screens

This commit is contained in:
Alexandre D. Díaz
2020-11-27 12:50:16 +01:00
committed by Sergey Shebanin
parent eed0e5b460
commit 850600f213
6 changed files with 22 additions and 1 deletions

View File

@@ -747,3 +747,13 @@ html .o_web_client .o_action_manager .o_action {
}
}
}
// Search Panel
@include media-breakpoint-down(sm) {
// Hide search panel
.o_controller_with_searchpanel {
.o_search_panel {
display: none;
}
}
}