From f3517b66351415c20a981defa1132735f6b1d05f Mon Sep 17 00:00:00 2001 From: Jenux Date: Tue, 6 Jul 2021 09:37:41 +0800 Subject: [PATCH] docs: match css filename in dark-mode.md (#29936) * Update dark-mode.md Fix the unmatched css file name * Update docs/tutorial/dark-mode.md Co-authored-by: Jeremy Rose Co-authored-by: Jeremy Rose --- docs/tutorial/dark-mode.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorial/dark-mode.md b/docs/tutorial/dark-mode.md index bbb2f638143..430fc0eea3a 100644 --- a/docs/tutorial/dark-mode.md +++ b/docs/tutorial/dark-mode.md @@ -80,9 +80,9 @@ Starting with the `index.html` file: ``` -And the `style.css` file: +And the `styles.css` file: -```css title='style.css' +```css title='styles.css' @media (prefers-color-scheme: dark) { body { background: #333; color: white; } }