From 40311275b0c6809da5489d7e5631df1bf6c512c4 Mon Sep 17 00:00:00 2001 From: Christoph Brandau Date: Thu, 13 Aug 2026 23:07:19 +0200 Subject: [PATCH] style(app): remove border radius on commit-body Removes the rounded corners on the commit-body by setting border-radius to 0. This makes the component use a flat edge and aligns with the design system. - Remove dependency on ui radius variable for commit-body --- src/app.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.css b/src/app.css index 29f2d6a..f998837 100644 --- a/src/app.css +++ b/src/app.css @@ -6080,7 +6080,7 @@ input:focus, textarea:focus, select:focus { box-shadow: 0 0 0 3px color-mix(in s .graph-list { background: var(--color-surface-solid); } .graph-gutter { background: var(--color-surface-dim); } .commit-body { - border-radius: var(--ui-radius-sm); + border-radius: 0; background: color-mix(in srgb, var(--color-primary) 7%, var(--color-surface-solid)); box-shadow: none; }