From 7f9155558a76780ca9465438d3d5c37811cf117b Mon Sep 17 00:00:00 2001 From: jableader Date: Wed, 16 Oct 2024 09:32:44 +1100 Subject: [PATCH] Fix overwidth on recipe search box --- src/components/recipes/RecipeSearchBox.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/recipes/RecipeSearchBox.vue b/src/components/recipes/RecipeSearchBox.vue index f8e3328..1e7041c 100644 --- a/src/components/recipes/RecipeSearchBox.vue +++ b/src/components/recipes/RecipeSearchBox.vue @@ -58,7 +58,7 @@ export default { } .recipe-search-box input { - width: 100%; + width: calc(100% - 2em); padding: 8px; border: 1px solid #ccc; border-radius: 4px;