From eb0f72ecefaf4b71c82801f2f9a8a3044aa71151 Mon Sep 17 00:00:00 2001 From: Karl Stolley Date: Wed, 17 Jul 2024 11:21:46 -0500 Subject: [PATCH] search_pills: Correct border radius to match images. --- web/styles/search.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/styles/search.css b/web/styles/search.css index a5dd8fd3e5..d44f38c3dd 100644 --- a/web/styles/search.css +++ b/web/styles/search.css @@ -256,7 +256,8 @@ in the area. */ height: calc(var(--height-input-pill) - 2px); border: none; - border-radius: 3px; + /* Match border radius to image */ + border-radius: 4px; max-width: none; display: grid; grid-template-columns: auto 1fr auto;