Skip to content

Commit

Permalink
fix(card): export STYLES
Browse files Browse the repository at this point in the history
  • Loading branch information
Enlcxx committed Dec 27, 2018
1 parent 2ef4197 commit 8930455
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/card/card.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import {
toBoolean
} from '@alyle/ui';

const styles = (theme: ThemeVariables) => ({
export const STYLES = (theme: ThemeVariables) => ({
root: {
display: 'block',
overflow: 'hidden',
Expand Down Expand Up @@ -86,9 +86,9 @@ mixinBg(
export class LyCard extends LyCardMixinBase implements OnChanges, OnInit, OnDestroy {
/**
* styles
* @ignore
* @docs-private
*/
classes = this.theme.addStyleSheet(styles, STYLE_PRIORITY);
classes = this.theme.addStyleSheet(STYLES, STYLE_PRIORITY);
constructor(
private theme: LyTheme2,
private _el: ElementRef,
Expand Down

0 comments on commit 8930455

Please sign in to comment.