Files
Brandy Carney 253cfc182b style(sass): fixing lint errors
references #5797
2016-03-14 16:44:08 -04:00

45 lines
499 B
SCSS

@import "../../globals.wp";
// Windows App
// --------------------------------------------------
ion-content {
color: $text-wp-color;
}
p {
color: $paragraph-wp-color;
}
a {
color: $link-wp-color;
}
hr {
background-color: rgba(0, 0, 0, .08);
}
@each $color-name, $color-value in $colors-wp {
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a:not([button]),
small,
b,
i,
strong,
em,
sub,
sup,
ion-icon {
&[#{$color-name}] {
color: $color-value;
}
}
}