Skip to content

Commit

Permalink
fix(grid): fix key style for alignItems
Browse files Browse the repository at this point in the history
  • Loading branch information
Enlcxx committed Dec 9, 2018
1 parent a8ff27f commit 3b72817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/grid/grid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export class LyGrid {
@Input()
set alignItems(val: AlignItems) {
this._alignItems = val;
this._alignItemsClass = this.theme.addStyle(`lyGrid-direction:${val}`, (theme: ThemeVariables) => {
this._alignItemsClass = this.theme.addStyle(`lyGrid.align:${val}`, (theme: ThemeVariables) => {
let alignItemsStyles: {
alignItems?: string,
[media: string]: {
Expand Down

0 comments on commit 3b72817

Please sign in to comment.