Skip to content

Commit

Permalink
feat(windows): add chip component
Browse files Browse the repository at this point in the history
references #5565
  • Loading branch information
brandyscarney committed Feb 23, 2016
1 parent eeac795 commit 2699b44
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions ionic/components.wp.scss
Expand Up @@ -11,5 +11,6 @@
"components/badge/badge.wp",
"components/button/button.wp",
"components/checkbox/checkbox.wp",
"components/chip/chip.wp",
"components/radio/radio.wp",
"components/toolbar/toolbar.wp";
23 changes: 23 additions & 0 deletions ionic/components/chip/chip.wp.scss
@@ -0,0 +1,23 @@
@import "./chip";

// Windows Chip
// --------------------------------------------------

ion-chip {

}


// Generate Windows Chip Colors
// --------------------------------------------------

@each $color-name, $color-value in $colors-wp {

ion-chip {
ion-icon[#{$color-name}] {
background-color: $color-value;
color: color-inverse($color-value) !important;
}
}

}

0 comments on commit 2699b44

Please sign in to comment.