OpenDTU/webapp/src/scss/styles.scss
Bernhard Kirchen d06ea51c7a webapp: last table row shall have no bottom border
similar to the first row which has no border at the top.
2024-11-01 23:34:41 +01:00

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;
}