mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 14:01:20 +08:00
25 lines
467 B
SCSS
25 lines
467 B
SCSS
@import "../../themes/ionic.globals.wp";
|
|
|
|
// Windows Note
|
|
// --------------------------------------------------
|
|
|
|
/// @prop - Text color of the note
|
|
$note-wp-color: $input-wp-border-color !default;
|
|
|
|
|
|
.note-wp {
|
|
color: $note-wp-color;
|
|
}
|
|
|
|
|
|
// Generate Windows Note Colors
|
|
// --------------------------------------------------
|
|
|
|
@each $color-name, $color-base, $color-contrast in get-colors($colors-wp) {
|
|
|
|
.note-wp-#{$color-name} {
|
|
color: $color-base;
|
|
}
|
|
|
|
}
|