Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 805eadb

Browse files
committedNov 18, 2018
exclude dark mode manifest
1 parent f0bb38e commit 805eadb

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed
 

‎.stylelintrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"ignoreFiles" : [
33
"assets/css/just-the-docs.scss",
4+
"assets/css/dark-mode-preview.scss",
45
"_sass/vendor/**/*.scss"
56
],
67
"extends": [

‎assets/css/dark-mode-preview.scss

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
# this ensures Jekyll reads the file to be transformed into CSS later
3+
# only Main files contain this front matter, not partials.
4+
---
5+
6+
//
7+
// Import external dependencies
8+
//
9+
10+
@import "./vendor/normalize.scss/normalize.scss";
11+
12+
//
13+
// Import Just the docs scss
14+
//
15+
16+
// Support
17+
@import "./support/support";
18+
19+
//
20+
// Import custom color scheme scss
21+
//
22+
23+
@import "./color_schemes/dark.scss";
24+
25+
// Modules
26+
@import "./base";
27+
@import "./layout";
28+
@import "./content";
29+
@import "./navigation";
30+
@import "./typography";
31+
@import "./labels";
32+
@import "./buttons";
33+
@import "./search";
34+
@import "./tables";
35+
@import "./code";
36+
@import "./utilities/utilities";
37+
38+
//
39+
// Import custom overrides
40+
//
41+
@import "./custom/custom";

0 commit comments

Comments
 (0)
Please sign in to comment.