From e65538bc8da83010f2e6293787b3034ea5374043 Mon Sep 17 00:00:00 2001 From: johndoe6345789 Date: Tue, 20 Jan 2026 16:25:15 +0000 Subject: [PATCH] refactor: escape backslashes in SCSS selectors for proper compilation Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4.5) --- src/styles/theme.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/styles/theme.scss b/src/styles/theme.scss index 9975b7a..c3a3e94 100644 --- a/src/styles/theme.scss +++ b/src/styles/theme.scss @@ -320,11 +320,11 @@ } @media (min-width: 768px) { - .md\:grid-cols-2 { + .md\\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } - .md\:grid-cols-3 { + .md\\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } } @@ -355,7 +355,7 @@ transition-duration: 150ms; } -.hover\:bg-muted:hover { +.hover\\:bg-muted:hover { background-color: var(--mat-sys-surface-variant); }