Arrange rows in .basic-info tables vertically when horizontal space is constrained (#1771)

Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>
pull/1781/head
Johannes Marbach 3 weeks ago committed by GitHub
parent e74c7c1540
commit ee1a169121
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -437,6 +437,31 @@ footer {
&.basic-info th {
width: 15rem;
}
/* Arrange rows vertically when horizontal space is constrained to avoid overflowing */
@include media-breakpoint-down(sm) {
/* Make cells full width without vertical margin */
&.basic-info th, &.basic-info td {
width: 100%;
display: inline-block;
margin-top: 0;
margin-bottom: 0;
}
/* Remove border and padding between header & data cells to make them appear like a single cell */
&.basic-info td {
padding-top: 0;
border-top: none;
}
&.basic-info th {
border-bottom: none;
}
/* Remove top border on all but the first header cell to prevent double borders between rows */
&.basic-info tr + tr th {
border-top: none;
}
}
}
pre {

@ -0,0 +1 @@
Arrange rows in `.basic-info` tables vertically when horizontal space is constrained.
Loading…
Cancel
Save