Skip to content

Commit afdc6dd

Browse files
author
Tim Bannister
committed
Move style override to correct file
If you want to override Docsy's styles, you should do that from _styles_project.scss not _variables_project.scss Fix the mixup.
1 parent fa257d9 commit afdc6dd

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

assets/scss/_styles_project.scss

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/* This file is provided by Docsy as an extension point for styling.
2+
Add styles or import other files. */
3+
4+
@import "reset";
5+
@import "skin";
6+
7+
//K8S-Docsy integration
8+
@import "custom";
9+
10+
//Media queries
11+
@import "base";
12+
@import "tablet";
13+
@import "desktop";

assets/scss/_variables_project.scss

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,5 @@
1-
/* This file is provided by Docsy as an entry point to styling.
2-
Add styles or override variables from the theme here. */
3-
4-
@import "reset";
5-
@import "skin";
6-
7-
//K8S-Docsy integration
8-
@import "custom";
9-
10-
//Media queries
11-
@import "base";
12-
@import "tablet";
13-
@import "desktop";
1+
/* This file is provided by Docsy as an extension point for styling.
2+
Override variables from the theme here. */
143

154
$primary: #326ce5;
165

0 commit comments

Comments
 (0)