From 2b826039826872fbfdb498a407d08129a7a6be52 Mon Sep 17 00:00:00 2001 From: Doug Martin Date: Fri, 5 Apr 2024 13:28:10 -0400 Subject: [PATCH] fix: Set min-width on right nav This prevents the right nav from growing and shrinking when the play/pause/resume button changes widths. --- src/components/app.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/app.scss b/src/components/app.scss index 39353b1..b5141e1 100644 --- a/src/components/app.scss +++ b/src/components/app.scss @@ -88,6 +88,7 @@ flex-direction: column; flex: 1; flex-grow: 0; + min-width: 160px; gap: 10px; background-color: #dddddd7f; border-radius: 3px;