Skip to content

Commit

Permalink
exclude dark mode manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
pmarsceill committed Nov 18, 2018
1 parent f0bb38e commit 805eadb
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
1 change: 1 addition & 0 deletions .stylelintrc.json
@@ -1,6 +1,7 @@
{
"ignoreFiles" : [
"assets/css/just-the-docs.scss",
"assets/css/dark-mode-preview.scss",
"_sass/vendor/**/*.scss"
],
"extends": [
Expand Down
41 changes: 41 additions & 0 deletions assets/css/dark-mode-preview.scss
@@ -0,0 +1,41 @@
---
# this ensures Jekyll reads the file to be transformed into CSS later
# only Main files contain this front matter, not partials.
---

//
// Import external dependencies
//

@import "./vendor/normalize.scss/normalize.scss";

//
// Import Just the docs scss
//

// Support
@import "./support/support";

//
// Import custom color scheme scss
//

@import "./color_schemes/dark.scss";

// Modules
@import "./base";
@import "./layout";
@import "./content";
@import "./navigation";
@import "./typography";
@import "./labels";
@import "./buttons";
@import "./search";
@import "./tables";
@import "./code";
@import "./utilities/utilities";

//
// Import custom overrides
//
@import "./custom/custom";

0 comments on commit 805eadb

Please sign in to comment.