38 lines
521 B
SCSS
38 lines
521 B
SCSS
//
|
|
// _table.scss
|
|
//
|
|
|
|
.table {
|
|
th {
|
|
font-weight: $font-weight-bold;
|
|
}
|
|
|
|
.table-light{
|
|
color: $body-color;
|
|
border-color: $table-border-color;
|
|
background-color: $table-head-bg;
|
|
}
|
|
}
|
|
|
|
.table-bordered {
|
|
border: $table-border-width solid $table-border-color;
|
|
|
|
th,
|
|
td {
|
|
border: $table-border-width solid $table-border-color;
|
|
}
|
|
}
|
|
|
|
|
|
.table-dark>:not(:last-child)>:last-child>*{
|
|
border-bottom-color: $table-dark-border-color;
|
|
}
|
|
|
|
.table-nowrap {
|
|
th, td {
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
|
|
|