mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
32 lines
422 B
SCSS
32 lines
422 B
SCSS
@import "../../../globals.md";
|
|
|
|
// Material Design App
|
|
// --------------------------------------------------
|
|
|
|
|
|
a {
|
|
color: $link-md-color;
|
|
}
|
|
|
|
hr {
|
|
background-color: rgba(0, 0, 0, 0.08);
|
|
}
|
|
|
|
@each $color-name, $color-value in $colors-md {
|
|
h1, h2, h3, h4, h5, h6,
|
|
p,
|
|
span,
|
|
a:not([button]),
|
|
small,
|
|
b,
|
|
i,
|
|
strong,
|
|
em,
|
|
sub,
|
|
sup {
|
|
&[#{$color-name}] {
|
|
color: $color-value !important;
|
|
}
|
|
}
|
|
}
|