From ef1470a58be885fd3dbb514dd490c5d8d73600e3 Mon Sep 17 00:00:00 2001 From: Ryan Salazar Date: Fri, 22 May 2026 00:41:28 +0000 Subject: [PATCH] css: drop escaped-slash selectors that broke cssnano --- src/styles/tailwind.css | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index 3bcad95..a76097d 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -1401,7 +1401,6 @@ h1, h2, h3 { /* Borders previously blue → neon-tinted, subtle */ .bb-neon .border-\[\#3b82f6\], -.bb-neon .border-\[\#3b82f6\\/30\], .bb-neon .border-\[\#1e3a5f\] { border-color: rgba(0, 255, 159, 0.35) !important; } @@ -1438,8 +1437,8 @@ h1, h2, h3 { box-shadow: 0 0 22px rgba(0, 255, 159, 0.45); } -/* Category pills / tags / "AI" badges — cyan */ -.bb-neon .bg-\[\#3b82f6\]\/20 { +/* Category pills / tags / "AI" badges — cyan via attribute selector */ +.bb-neon [class*="bg-[#3b82f6]/"] { background: rgba(0, 212, 255, 0.12) !important; border-color: rgba(0, 212, 255, 0.35) !important; }