Fix for Mobile UI

This commit is contained in:
Moravčík, Marian 2020-02-24 07:23:10 +01:00
parent 32a467cec5
commit df0f4dd92d
3 changed files with 17 additions and 8 deletions

View File

@ -378,8 +378,10 @@ table.dataTable tbody td {
@media (min-width: 1024px) {
#edit_bar {
margin-left: 240px;
}
}
margin-left: 240px; } }
@media (max-width: 767px) {
/*Sidebar and wrapper*/
.mini-sidebar .page-wrapper {
padding-top: 0; } }
/*# sourceMappingURL=bazarr.css.map */

File diff suppressed because one or more lines are too long

View File

@ -528,10 +528,10 @@ a.link {
padding-top: 0px
}
.dt-buttons{
display: inline-block;
padding-top: 0;
margin-bottom: 0;
.dt-buttons {
display: inline-block;
padding-top: 0;
margin-bottom: 0;
}
.tooltip {
@ -548,3 +548,10 @@ table.dataTable tbody td {
}
}
@media(max-width: 767px) {
/*Sidebar and wrapper*/
.mini-sidebar .page-wrapper {
padding-top: 0;
}
}