fix(curriculum): correct selector for ::backdrop pseudo-element (#63362)

This commit is contained in:
Yyash64 2025-10-31 19:31:20 +05:30 committed by GitHub
parent 83a5347739
commit fed347908d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,7 +38,7 @@ dialog {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
body::backdrop {
dialog::backdrop {
background: rgba(0, 0, 0, 0.5);
}
```