mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 11:41:20 +08:00
26 lines
819 B
SCSS
26 lines
819 B
SCSS
|
|
// Font Mixins
|
|
// --------------------------------------------------
|
|
|
|
|
|
@mixin font-shorthand($size: $base-font-size, $weight: normal, $line-height: $base-line-height) {
|
|
font-weight: $weight;
|
|
font-size: $size;
|
|
line-height: $line-height;
|
|
}
|
|
|
|
@mixin font-serif($size: $base-font-size, $weight: normal, $line-height: $base-line-height) {
|
|
font-family: $serif-font-family;
|
|
@include font-shorthand($size, $weight, $line-height);
|
|
}
|
|
|
|
@mixin font-sans-serif($size: $base-font-size, $weight: normal, $line-height: $base-line-height) {
|
|
font-family: $sans-font-family;
|
|
@include font-shorthand($size, $weight, $line-height);
|
|
}
|
|
|
|
@mixin font-monospace($size: $base-font-size, $weight: normal, $line-height: $base-line-height) {
|
|
font-family: $mono-font-family;
|
|
@include font-shorthand($size, $weight, $line-height);
|
|
}
|