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.
This commit is contained in:
Tim Bannister 2024-10-04 12:55:01 +01:00
parent fa257d9454
commit afdc6ddcc2
No known key found for this signature in database
GPG Key ID: 31BA93F2DB289EFE
2 changed files with 15 additions and 13 deletions

View File

@ -0,0 +1,13 @@
/* This file is provided by Docsy as an extension point for styling.
Add styles or import other files. */
@import "reset";
@import "skin";
//K8S-Docsy integration
@import "custom";
//Media queries
@import "base";
@import "tablet";
@import "desktop";

View File

@ -1,16 +1,5 @@
/* This file is provided by Docsy as an entry point to styling.
Add styles or override variables from the theme here. */
@import "reset";
@import "skin";
//K8S-Docsy integration
@import "custom";
//Media queries
@import "base";
@import "tablet";
@import "desktop";
/* This file is provided by Docsy as an extension point for styling.
Override variables from the theme here. */
$primary: #326ce5;