mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-08 23:58:13 +08:00
fix(loading): standalone font
This commit is contained in:
@ -8,6 +8,11 @@
|
||||
// iOS Loading Indicator
|
||||
// --------------------------------------------------
|
||||
|
||||
.loading-ios {
|
||||
font-family: $loading-ios-font-family;
|
||||
font-size: $loading-ios-font-size;
|
||||
}
|
||||
|
||||
.loading-ios .loading-wrapper {
|
||||
@include border-radius($loading-ios-border-radius);
|
||||
|
||||
|
||||
@ -3,6 +3,12 @@
|
||||
// iOS Loading Indicator
|
||||
// --------------------------------------------------
|
||||
|
||||
/// @prop - Font family of the alert
|
||||
$loading-ios-font-family: $font-family-ios-base !default;
|
||||
|
||||
/// @prop - Font size of the alert
|
||||
$loading-ios-font-size: $font-size-ios-base !default;
|
||||
|
||||
/// @prop - Color of backdrop
|
||||
$loading-backdrop-ios-color: $backdrop-ios-color !default;
|
||||
|
||||
|
||||
@ -8,6 +8,11 @@
|
||||
// Material Design Loading Indicator
|
||||
// --------------------------------------------------
|
||||
|
||||
.loading-md {
|
||||
font-family: $loading-md-font-family;
|
||||
font-size: $loading-md-font-size;
|
||||
}
|
||||
|
||||
.loading-md .loading-wrapper {
|
||||
@include border-radius($loading-md-border-radius);
|
||||
|
||||
|
||||
@ -3,6 +3,12 @@
|
||||
// Material Design Loading Indicator
|
||||
// --------------------------------------------------
|
||||
|
||||
/// @prop - Font family of the alert
|
||||
$loading-md-font-family: $font-family-md-base !default;
|
||||
|
||||
/// @prop - Font size of the alert
|
||||
$loading-md-font-size: $font-size-md-base !default;
|
||||
|
||||
/// @prop - Color of backdrop
|
||||
$loading-backdrop-md-color: $backdrop-md-color !default;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user