Fix displaying export button for screen width less than 1280px

This commit is contained in:
Igor Kulikov 2019-06-27 11:21:08 +03:00
parent 4d5313371b
commit c3dc81f71f

View File

@ -153,6 +153,12 @@ tb-dashboard-toolbar {
min-width: 0;
height: $half-mobile-toolbar-height;
@media (max-width: $layout-breakpoint-sm) {
md-menu{
margin: 0;
}
}
@media (min-width: $layout-breakpoint-sm) {
height: 46px;
}