fix(web): keep release deck aligned on phones
Under 40rem the seven-column line cannot fit: hdr and audio move into the expand row, the surviving five columns tighten, and the column header never wraps at any width. Closes #105 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
@@ -1171,9 +1171,12 @@ function releaseRow(
|
||||
const meta = document.createElement("p");
|
||||
meta.className = "rel-meta readout dim";
|
||||
const published = formatPublishDate(release.publish_date);
|
||||
// hdr and audio leave the chip line under 40rem; the expand carries them
|
||||
meta.textContent = [
|
||||
`indexer ${release.indexer_id}`,
|
||||
published === null ? null : `published ${published}`,
|
||||
`hdr ${formatHdr(release.parsed)}`,
|
||||
`audio ${formatAudio(release.parsed)}`,
|
||||
`${release.size} bytes`,
|
||||
]
|
||||
.filter((part) => part !== null)
|
||||
|
||||
Reference in New Issue
Block a user