mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00
23 lines
402 B
SCSS
23 lines
402 B
SCSS
@import "./chip";
|
|
|
|
// Material Design Chip
|
|
// --------------------------------------------------
|
|
|
|
ion-chip {
|
|
}
|
|
|
|
|
|
// Generate Material Design Chip Colors
|
|
// --------------------------------------------------
|
|
|
|
@each $color-name, $color-value in $colors-ios {
|
|
|
|
ion-chip {
|
|
> ion-icon[#{$color-name}] {
|
|
background-color: $color-value;
|
|
color: inverse($color-value) !important;
|
|
}
|
|
}
|
|
|
|
}
|