Skip to content

Commit

Permalink
Fix broken release due to incorrect import statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Norman Rusch committed Feb 27, 2023
1 parent 3683022 commit 8ade596
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion src/index.scss
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
@import url('./styles/index');
/* The @import rule for sass fails and is treated as css import. On a build,
* using `url(...)` notation, the mixin will not be found. We are disabling the
* styling rule for now:
*
* stylelint-disable-line import-notation */
@import './styles/index'; // stylelint-disable-line import-notation
2 changes: 1 addition & 1 deletion web/demo/styles.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import url('https://fonts.googleapis.com/css?family=Pacifico|Vollkorn:400,600,700'); // sass-lint:disable-line no-url-protocols
@import url('https://fonts.googleapis.com/css?family=Pacifico|Vollkorn:400,600,700');

@font-face {
font-family: 'icons';
Expand Down

0 comments on commit 8ade596

Please sign in to comment.