3 Commits

Author SHA1 Message Date
3a475742e4 Merge pull request '[i294] Inconsistent host page layouts' (#298) from i294_Inconsistent-host-page-layouts into main
Reviewed-on: #298
2025-11-08 13:43:49 +00:00
4e2ecc4efc Tweak flex gap for host_meta on small displays 2025-11-08 08:26:11 -05:00
c85a4b8c6e Clean up layout of host meta info on host page
For small displays insure the meta info box wraps
and is displayed below the host id box.
2025-11-08 08:15:18 -05:00

View File

@@ -703,9 +703,15 @@ fieldset > table td input[type="radio"] {
border-radius: 0.25rem; border-radius: 0.25rem;
} }
#host { #host {
justify-content: flex-start; justify-content: center;
align-items: end; align-items: center;
gap: 0; gap: 0.5rem;
}
#host_id {
text-align: center;
}
#host_id > h2 {
margin-top: 0;
} }
#host_id img { #host_id img {
border-radius: 0.25rem; border-radius: 0.25rem;
@@ -884,7 +890,7 @@ nav.episodes span a:hover svg #bar {
max-width: 45%; max-width: 45%;
} }
#host { #host {
gap: 1rem; gap: 2rem;
} }
nav.episodes { nav.episodes {
display: inline-block; display: inline-block;