Files
law-api/public/assets/scss/custom/components/_table.scss

22 lines
237 B
SCSS

//
// _table.scss
//
.table {
th {
font-weight: $font-weight-medium;
}
}
//Table centered
.table-centered {
td,th {
vertical-align: middle !important;
}
}
.table-nowrap {
th, td {
white-space: nowrap;
}
}