Fix for lint

This commit is contained in:
Joachim 2021-04-21 21:29:28 +02:00
parent 2ae9085e55
commit e4836bd9b3

View file

@ -265,15 +265,18 @@ body {
}
@media only screen and (max-width: 768px) {
table.is-mobile, table.is-mobile tbody {
table.is-mobile,
table.is-mobile tbody {
display: block;
}
table.is-mobile tr {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
border-top: 1px solid #dbdbdb;
}
table.is-mobile td {
display: block;
box-sizing: border-box;
@ -281,20 +284,25 @@ body {
order: 2;
border-bottom: 0;
}
table.is-mobile td.book-preview-top-row {
order: 1;
flex-basis: auto;
}
table.is-mobile td[data-title]:not(:empty)::before {
content: attr(data-title);
display: block;
font-size: .75em;
font-size: 0.75em;
font-weight: bold;
}
table.is-mobile td:empty {
padding: 0;
}
table.is-mobile th, table.is-mobile thead {
table.is-mobile th,
table.is-mobile thead {
display: none;
}
}