Skip to content

Commit 6ffe634

Browse files
authored
Merge pull request #48194 from sftim/20241004_fix_wrong_style_call
Move style overrides to correct file
2 parents 4488455 + 076ae4a commit 6ffe634

File tree

3 files changed

+20
-18
lines changed

3 files changed

+20
-18
lines changed

assets/scss/_skin.scss

Lines changed: 0 additions & 5 deletions
This file was deleted.

assets/scss/_styles_project.scss

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+
6+
//K8S-Docsy integration
7+
@import "custom";
8+
9+
//Media queries
10+
@import "base";
11+
@import "tablet";
12+
@import "desktop";

assets/scss/_variables_project.scss

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,14 @@
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

6+
$blue: #326ce5;
7+
$light-grey: #f7f7f7;
8+
$dark-grey: #303030;
9+
$medium-grey: #4c4c4c;
10+
$white: #ffffff;
11+
1712
// tooltip
1813
$tooltip-bg: #555;
1914
$tooltip-arrow-color: $tooltip-bg !default;

0 commit comments

Comments
 (0)