19 lines
342 B
SCSS
19 lines
342 B
SCSS
// Import all of Bootstrap's CSS
|
|
@import '~bootstrap/scss/bootstrap';
|
|
|
|
.container-fluid .row {
|
|
font-feature-settings: 'tnum';
|
|
}
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
label.col-form-label,
|
|
label.form-check-label {
|
|
text-align: end;
|
|
}
|
|
}
|
|
|
|
table.table tr:last-child th,
|
|
table.table tr:last-child td {
|
|
border-bottom: 0;
|
|
}
|