From 83f639afecd1085d83b5774a2e656be57387d2ce Mon Sep 17 00:00:00 2001 From: zzstoatzz Date: Mon, 13 Oct 2025 14:21:34 -0500 Subject: [PATCH] fix: align buttons and ensure consistent monospace font MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - add display: flex and align-items: center to .logout for consistent vertical alignment with .watch-live-btn - add explicit font-family: inherit to .watch-live-btn to ensure monospace font usage 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/templates.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/templates.rs b/src/templates.rs index b9cd0f2..115dd57 100644 --- a/src/templates.rs +++ b/src/templates.rs @@ -299,6 +299,8 @@ pub fn app_page(did: &str) -> String { -webkit-tap-highlight-color: transparent; cursor: pointer; border-radius: 2px; + display: flex; + align-items: center; }} .logout:hover, .logout:active {{ @@ -1193,6 +1195,7 @@ pub fn app_page(did: &str) -> String { position: fixed; top: clamp(1rem, 2vmin, 1.5rem); right: clamp(6rem, 14vmin, 9rem); + font-family: inherit; font-size: clamp(0.65rem, 1.4vmin, 0.75rem); color: var(--text-light); border: 1px solid var(--border); -- 2.43.0