rustdoc: simplify mobile item-table CSS

Using flexbox in column direction is needlessly complicated, since no
special flex powers are being used here. Just use regular block layout.

This should result in no visible changes.
This commit is contained in:
Michael Howell 2022-11-01 16:27:00 -07:00
parent ab5a2bc731
commit 82c68cae18
1 changed files with 1 additions and 8 deletions

View File

@ -1870,16 +1870,9 @@ in storage.js
}
/* Display an alternating layout on tablets and phones */
.item-table {
.item-table, .item-row, .item-left, .item-right {
display: block;
}
.item-row {
display: flex;
flex-flow: column wrap;
}
.item-left, .item-right {
width: 100%;
}
/* Display an alternating layout on tablets and phones */
.search-results > a {