File tree Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"ignoreFiles" : [
3
3
" assets/css/just-the-docs.scss" ,
4
+ " assets/css/dark-mode-preview.scss" ,
4
5
" _sass/vendor/**/*.scss"
5
6
],
6
7
"extends" : [
Original file line number Diff line number Diff line change
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" ;
You can’t perform that action at this time.
0 commit comments