From 670be300f1f2b7f3588d1e7fb32cdaec475583c3 Mon Sep 17 00:00:00 2001 From: Micah Kepe Date: Fri, 13 Feb 2026 11:12:09 -0800 Subject: [PATCH] fix(styling): use `var(--border-radius)` over hardcoded styling --- web_src/js/components/RepoFileSearch.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web_src/js/components/RepoFileSearch.vue b/web_src/js/components/RepoFileSearch.vue index 0223d07766..c4cb3d812f 100644 --- a/web_src/js/components/RepoFileSearch.vue +++ b/web_src/js/components/RepoFileSearch.vue @@ -194,8 +194,8 @@ watch([searchQuery, filteredFiles], async () => { .repo-file-search-input-wrapper input { padding-right: 32px !important; border-right: 1px solid var(--color-input-border) !important; - border-top-right-radius: 0.28571429rem !important; - border-bottom-right-radius: 0.28571429rem !important; + border-top-right-radius: var(--border-radius) !important; + border-bottom-right-radius: var(--border-radius) !important; } .repo-file-search-input-wrapper input:focus {