Skip to content

Commit

Permalink
fix(core/scss): fix import path of shadow
Browse files Browse the repository at this point in the history
  • Loading branch information
danielleroux committed Aug 18, 2022
1 parent e1fb195 commit dd25727
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/core/component-doc.json
@@ -1,5 +1,5 @@
{
"timestamp": "2022-08-17T10:54:43",
"timestamp": "2022-08-18T08:22:19",
"compiler": {
"name": "@stencil/core",
"version": "2.15.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/scss/components/_shadows.scss
@@ -1,7 +1,7 @@
/*
* COPYRIGHT (c) Siemens AG 2018-2022 ALL RIGHTS RESERVED.
*/
@import './define-theme-variable';
@import './../theme/define-theme-variable';

@mixin shadows {
$box-shadow-lvl-1: 0 1px 4px 0 var(--theme-color-shadow-1),
Expand Down
2 changes: 1 addition & 1 deletion packages/core/scss/theme/_define-theme.scss
Expand Up @@ -3,7 +3,7 @@
*/

@import './define-theme-variable';
@import './shadows';
@import './../components/shadows';

@mixin define-theme(
$name,
Expand Down

0 comments on commit dd25727

Please sign in to comment.