[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
parent 62465b5d54
commit 0f59607bd9
5 changed files with 21 additions and 0 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;
}
}
}