From c2e84f122a37bcae09d36026a4a62f1c9f3f404d Mon Sep 17 00:00:00 2001 From: Lann Martin Date: Thu, 10 Sep 2026 15:46:31 -0400 Subject: [PATCH] Clip overflow on circular visor element --- visor/src/style.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/visor/src/style.rs b/visor/src/style.rs index 3be498fa..2a87f965 100644 --- a/visor/src/style.rs +++ b/visor/src/style.rs @@ -114,6 +114,7 @@ pub(crate) const CSS: &str = r#" } #visor-circle { border-radius: 50%; + overflow: clip; } #visor-root .stack { flex: 1; min-width: 0; } #visor-root .stack .top, #visor-root .stack .bottom { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }