From 4a4b7c71f3dbe1acd9dfddce776d7b7feaaf9301 Mon Sep 17 00:00:00 2001 From: rerdi92 <76791321+rerdi92@users.noreply.github.com> Date: Mon, 3 Aug 2026 18:09:03 +0530 Subject: [PATCH] =?UTF-8?q?fix(desktop):=20un-break=20the=20.btn-arc=20rul?= =?UTF-8?q?e=20=E2=80=94=20'*/'=20inside=20a=20CSS=20comment=20ended=20it?= =?UTF-8?q?=20early?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The comment above .btn-arc contained 'bg-*/', whose */ terminated the comment mid-sentence, leaving 'text-* variant utilities. */ .btn-arc {' as an invalid prelude — CSS error recovery can drop the whole .btn-arc rule. Reword so no */ appears inside the comment. Extracted from #59352 by @rerdi92 (the rest of that PR — a month-stale icons.ts rewrite and a chunk-size warning-ceiling bump — is superseded/masking and was not salvaged). --- apps/desktop/src/styles.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/desktop/src/styles.css b/apps/desktop/src/styles.css index 9b77346fa318..2ee38e0b6584 100644 --- a/apps/desktop/src/styles.css +++ b/apps/desktop/src/styles.css @@ -1076,8 +1076,9 @@ code { } /* Arc-style multicolor action surface (static, not animated). Reusable on any - Button via className. Unlayered so it beats Tailwind's bg-*/ -text-* variant utilities. */ .btn-arc { + Button via className. Unlayered so it beats Tailwind's bg- and text- variant + utilities. */ +.btn-arc { background-image: linear-gradient(110deg, #5b6cff 0%, #8b5cf6 28%, #d946ef 58%, #fb7185 82%, #fb923c 100%); color: #fff; border-color: transparent;