Add missing comma to light-mode selector example

This commit is contained in:
Charlie Marsh 2023-06-22 15:59:22 -04:00 committed by GitHub
parent a8287eba1b
commit 40135b2102
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -182,7 +182,7 @@ hash fragment to the image URL:
=== "Custom light scheme" === "Custom light scheme"
``` css ``` css
[data-md-color-scheme="custom-light"] img[src$="#only-dark"] [data-md-color-scheme="custom-light"] img[src$="#only-dark"],
[data-md-color-scheme="custom-light"] img[src$="#gh-dark-mode-only"] { [data-md-color-scheme="custom-light"] img[src$="#gh-dark-mode-only"] {
display: none; /* Hide dark images in light mode */ display: none; /* Hide dark images in light mode */
} }