Skip to content

Commit

Permalink
Merge pull request #22 from first87/fix/prod-css-mixins
Browse files Browse the repository at this point in the history
Fix CSS-mixins NOT working in production build [FINAL]
  • Loading branch information
firstor authored Jun 28, 2017
2 parents af8a439 + 818f74d commit 64aa256
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/app/message/input/message-input.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ paper-textarea {
--paper-input-container-input-color: var(--app-color-green);
--paper-input-container-underline: {
display: none;
}
};
--paper-input-container-underline-focus: {
display: none;
}
};
@apply --app-word-wrapping;
}
12 changes: 6 additions & 6 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,15 @@
--app-border-normal: {
border-width: var(--app-border-width-normal);
border-style: var(--app-border-style-normal);
}
};
--app-border-thin: {
border-width: var(--app-border-width-thin);
border-style: var(--app-border-style-normal);
}
};
--app-border-thick: {
border-width: var(--app-border-width-thick);
border-style: var(--app-border-style-normal);
}
};

/*misc*/
--app-radius-normal: 2px;
Expand All @@ -111,7 +111,7 @@
-webkit-hyphens: none;
-ms-hyphens: none;
-moz-hyphens: none;
}
};
}

@media (min-width: 640px) {
Expand Down Expand Up @@ -148,10 +148,10 @@
height: var(--app-header-height);
--app-header-background-front-layer: {
background-color: var(--app-color-blue);
}
};
--app-header-background-rear-layer: {
background-color: var(--app-color-blue);
}
};
}

app-toolbar {
Expand Down

0 comments on commit 64aa256

Please sign in to comment.