22 lines
237 B
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;
|
|
}
|
|
} |