light-bootstrap-dashboard icon indicating copy to clipboard operation
light-bootstrap-dashboard copied to clipboard

[PRO] tables -> extended tables -> 'table big boy' is not responsive

Open nzjrs opened this issue 7 years ago • 1 comments

Or it is slightly responsive, but very badly so. At small sizes columns are cut-off

nzjrs avatar Apr 19 '17 09:04 nzjrs

@nzjrs thank you for using our product. It seems you are using the PRO product, here is the repo for the FREE. To fix that please add this code at the end of assets/css/light-bootstrap-dashboard.css

@media (min-width: 991px){
    .card .table-responsive{
        overflow: scroll;
        margin: 0;
        padding: 0;
    }
}
@media (min-width: 1200px){
    .card .table-responsive{
        overflow: visible;
    }
}

Then everything will work fine.

Best, Alex

alexandru-paduraru avatar Apr 21 '17 15:04 alexandru-paduraru