From 3b297e426d27075b33449ea1e1c873049c110aa5 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 29 Jan 2023 22:56:44 -0800 Subject: [PATCH] Fix uncap indicator in hovercards We mistakenly removed `width` when we wanted to set `min-width` --- components/Hovercard/index.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/Hovercard/index.scss b/components/Hovercard/index.scss index 7e429843..c0c803bb 100644 --- a/components/Hovercard/index.scss +++ b/components/Hovercard/index.scss @@ -48,6 +48,10 @@ flex-grow: 1; gap: $unit; } + + .UncapIndicator { + min-width: 100px; + } } }