Skip to content

Commit

Permalink
fix import paths (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
billdami authored Jun 4, 2019
1 parent b910373 commit 1943a49
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/styles/ember-floating-labels.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import '@gavant/ember-floating-labels/variables';
@import 'ember-floating-labels/variables';

.floating-label {
position: relative;
Expand Down
2 changes: 1 addition & 1 deletion blueprints/@gavant/ember-floating-labels/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = {

afterInstall() {
let dependencies = this.project.dependencies();
let importStatement = '\n@import "@gavant/ember-floating-labels";\n';
let importStatement = '\n@import "ember-floating-labels";\n';

if ('ember-cli-sass' in dependencies) {
let stylePath = path.join('app', 'styles');
Expand Down
2 changes: 1 addition & 1 deletion tests/dummy/app/styles/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ $floating-label-control-label-size: 1rem;
@import "mixins";
@import "layout";
@import "container";
@import "@gavant/ember-floating-labels";
@import "ember-floating-labels";

0 comments on commit 1943a49

Please sign in to comment.