From 8141c5213f2a412860c0e08b828d2c596fcc407f Mon Sep 17 00:00:00 2001 From: cucadmuh <49571317+cucadmuh@users.noreply.github.com> Date: Tue, 28 Apr 2026 09:23:19 +0300 Subject: [PATCH] fix(player): reserve preview row space in delay modal (#344) Prevent the timer modal from shifting when the "Paused at/Starts at" preview appears on hover. --- src/styles/components.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/styles/components.css b/src/styles/components.css index 67c4a39f..8e7c9a66 100644 --- a/src/styles/components.css +++ b/src/styles/components.css @@ -2207,10 +2207,12 @@ align-items: baseline; gap: 6px; margin-top: var(--space-3); - min-height: 1.1rem; + min-height: 1.35rem; + line-height: 1.35rem; font-size: 0.82rem; color: var(--text-muted); transition: opacity 150ms ease; + white-space: nowrap; } .playback-delay-preview[data-empty="true"] { opacity: 0; }