From 9b1960bbde371a09b0c8c6726563723a99a1f4cd Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Mon, 30 Mar 2026 20:24:58 +0300 Subject: [PATCH] Fix input addon border radius --- app/components/Input.module.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/components/Input.module.css b/app/components/Input.module.css index 4fc32217b..1d1ddaec9 100644 --- a/app/components/Input.module.css +++ b/app/components/Input.module.css @@ -48,8 +48,9 @@ } .addon { + --addon-radius: calc(var(--radius-field) - 2px); + border-radius: var(--addon-radius) 0 0 var(--addon-radius); display: grid; - border-radius: var(--radius-field) 0 0 var(--radius-field); background-color: var(--color-bg-high); color: var(--color-text-high); font-size: var(--font-xs);