Skip to content

Commit 99acb9a

Browse files
sahil839timabbott
authored andcommitted
css: Replace "night-mode-block" with "dark-theme-block".
1 parent 2feb144 commit 99acb9a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

postcss.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module.exports = ({file}) => ({
1111
// the flatpickr dark theme. We do this because flatpickr themes
1212
// are not scoped. See https://github.com/flatpickr/flatpickr/issues/2168.
1313
require("postcss-import")({
14-
plugins: [require("postcss-prefixwrap")("%night-mode-block")],
14+
plugins: [require("postcss-prefixwrap")("%dark-theme-block")],
1515
}),
1616
require("postcss-nested"),
1717
require("postcss-extend-rule"),

static/styles/dark_theme.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ body.dark-theme {
44
/* the following block(s) are generated by the import statements.
55
See postcss.config.js for details.
66
*/
7-
@extend %night-mode-block;
7+
@extend %dark-theme-block;
88

99
background-color: hsl(212, 28%, 18%);
1010
color: hsl(236, 33%, 90%);

0 commit comments

Comments
 (0)