fix(loading): standalone font

This commit is contained in:
Manu Mtz.-Almeida
2018-02-10 00:35:56 +01:00
parent 535d1fc069
commit e3510a3712
4 changed files with 22 additions and 0 deletions

View File

@ -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);

View File

@ -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;

View File

@ -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);

View File

@ -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;