diff options
Diffstat (limited to 'packages/meshbay-hub/src/meshbay_hub/static/style.css')
| -rw-r--r-- | packages/meshbay-hub/src/meshbay_hub/static/style.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/meshbay-hub/src/meshbay_hub/static/style.css b/packages/meshbay-hub/src/meshbay_hub/static/style.css index a35137b..dfed44b 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/style.css +++ b/packages/meshbay-hub/src/meshbay_hub/static/style.css @@ -2381,6 +2381,11 @@ a.transfer-name { flex-shrink: 0; } h2 .gn-owner, h3 .gn-owner { font-size: 0.55em; } +/* A card's h3 is reset to 1em (unlike a page heading, which is much larger), + so the 0.55em above would render the @host at about half the body size — + smaller than the name, as intended, but past the point of being readable. + 0.8em is the same ratio the standalone .gn-owner uses. */ +.group-card h3 .gn-owner { font-size: 0.8em; } /* ── Chat: paging and orientation ─────────────────────────────────────────── */ |