mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00

- splits the item min height by mode - removes padding end from the slotted end components in favor of using 16px on the item - updates the icon color to lighter gray (rgb) - removes font size change from text wrapped labels - add list spec test to include MD examples fixes #14799
20 lines
296 B
SCSS
20 lines
296 B
SCSS
@import "./note.ios.vars";
|
|
|
|
// iOS Note
|
|
// --------------------------------------------------
|
|
|
|
:host {
|
|
/**
|
|
* @prop --color: Color of the note
|
|
*/
|
|
color: var(--color);
|
|
|
|
font-family: $font-family-base;
|
|
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
:host(.ion-color) {
|
|
color: #{current-color(base)};
|
|
}
|