From 891f4b8dbd5a8dc90db011e3e8ca56d52f7e6d2b Mon Sep 17 00:00:00 2001 From: Nubenetes Bot Date: Fri, 19 Jun 2026 15:41:32 +0200 Subject: [PATCH] fix: align Intelligence Digest hero card height with the other 4 The four logo hero cards use a 100px ; the Intelligence Digest card uses an emoji
that was only ~32px tall, so it rendered shorter. Give .hero-badge-icon a 100px flex-centered box (and matching 12px bottom margin) so all five cards are the same height. Cache-bust bumped to ?v=2.9.7. Co-Authored-By: Claude Opus 4.8 --- docs/static/v2_elite.css | 10 ++++++++-- v2-mkdocs.yml | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/static/v2_elite.css b/docs/static/v2_elite.css index 01c95530..508b0cea 100644 --- a/docs/static/v2_elite.css +++ b/docs/static/v2_elite.css @@ -363,9 +363,15 @@ a { } .hero-badge-icon { - font-size: 2rem; + /* Match the 100px logo box on the other hero cards so the + emoji-based Intelligence Digest card is the same height. */ + height: 100px; + display: flex; + align-items: center; + justify-content: center; + font-size: 3.5rem; line-height: 1; - margin-bottom: 4px; + margin-bottom: 12px; } .hero-badge-title { diff --git a/v2-mkdocs.yml b/v2-mkdocs.yml index 76d78605..444365ff 100644 --- a/v2-mkdocs.yml +++ b/v2-mkdocs.yml @@ -99,7 +99,7 @@ extra: extra_css: - https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap - static/extra.css - - static/v2_elite.css?v=2.9.2 + - static/v2_elite.css?v=2.9.7 extra_javascript: - static/v2_filter.js