mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
23 lines
447 B
SCSS
23 lines
447 B
SCSS
@import "./note.md.vars";
|
|
|
|
// Material Design Note
|
|
// --------------------------------------------------
|
|
|
|
.note-md {
|
|
font-family: $note-md-font-family;
|
|
|
|
color: $note-md-color;
|
|
}
|
|
|
|
|
|
// Generate Material Design Note Colors
|
|
// --------------------------------------------------
|
|
|
|
@each $color-name, $color-value in $colors-md {
|
|
$color-base: ion-color($colors-md, $color-name, base, md);
|
|
|
|
.note-md-#{$color-name} {
|
|
color: $color-base;
|
|
}
|
|
}
|