refactor: escape backslashes in SCSS selectors for proper compilation

Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4.5) <aider@aider.chat>
This commit is contained in:
2026-01-20 16:25:15 +00:00
parent 0286f98953
commit e65538bc8d

View File

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