css: drop escaped-slash selectors that broke cssnano

This commit is contained in:
Ryan Salazar
2026-05-22 00:41:28 +00:00
parent 6e7e660927
commit ef1470a58b

View File

@@ -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;
}