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