Untitled

Anonymous
plain_text
09/30/2022 2:36 PM
348 B
19
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...