mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
36 lines
448 B
SCSS
36 lines
448 B
SCSS
@import "../../globals.ios";
|
|
|
|
// iOS App
|
|
// --------------------------------------------------
|
|
|
|
|
|
a {
|
|
color: $link-ios-color;
|
|
}
|
|
|
|
hr {
|
|
background-color: rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
&.hairlines hr {
|
|
height: 0.55px;
|
|
}
|
|
|
|
@each $color-name, $color-value in $colors-ios {
|
|
h1, h2, h3, h4, h5, h6,
|
|
p,
|
|
span,
|
|
a:not([button]),
|
|
small,
|
|
b,
|
|
i,
|
|
strong,
|
|
em,
|
|
sub,
|
|
sup {
|
|
&[#{$color-name}] {
|
|
color: $color-value !important;
|
|
}
|
|
}
|
|
}
|