Untitled

 avatar
unknown
plain_text
3 years ago
260 B
4
Indexable
/* responsive table  */
.table-responsive {
    max-height: 528px;
}

@media (max-width: 1440px) {
    .table-responsive {
        max-height: 428px;
    }
}

@media (max-width: 768px) {
    .table-responsive {
        max-height: 382px;
    }
}
Editor is loading...