Files
Brandy Carney dad2155ecd fix(sass): remove global imports from components
globals.mode is already imported in the components.mode file, so it
doesn’t need to be imported per component

fixes #5931
2016-04-11 11:59:44 -04:00

44 lines
498 B
SCSS

// 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-base, $color-contrast in get-colors($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-base;
}
}
}