Skip to content

Commit

Permalink
fix: Fix reference to 3rd party styles in stylesheets.
Browse files Browse the repository at this point in the history
Since latest scss build tools which became available in
`@patternslib/dev` version 3.6 references to `node_modules` need to be
left out. The build tool searches in node_modules anyways. This is now
fixed.
  • Loading branch information
thet committed Aug 16, 2024
1 parent 141f9aa commit d00253d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/pat/colour-picker/_colour-picker.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@charset "UTF-8";
@import "node_modules/spectrum-colorpicker/spectrum";

@import "spectrum-colorpicker/spectrum";

.checkNative,
.checkPattern {
Expand Down
2 changes: 1 addition & 1 deletion src/pat/date-picker/_date-picker.scss
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@charset "UTF-8";
@import "node_modules/pikaday/scss/pikaday.scss";
@import "pikaday/scss/pikaday.scss";

0 comments on commit d00253d

Please sign in to comment.