From dfdb4eee6b19b3dc2cf2d5cb900c9d4e6cdc0eba Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Sun, 27 Apr 2025 16:30:42 +0200 Subject: [PATCH] Constrain width for filtering --- app/assets/stylesheets/popup.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/assets/stylesheets/popup.css b/app/assets/stylesheets/popup.css index eda286eea..a1482b905 100644 --- a/app/assets/stylesheets/popup.css +++ b/app/assets/stylesheets/popup.css @@ -20,6 +20,11 @@ max-inline-size: 100%; position: relative; z-index: 5; + + .popup { + min-inline-size: 40ch; + max-inline-size: 40ch; + } } }