CoffeeHealth-AI / node_modules /flask /sass /font /_font-stack.function.scss
SucoCafe's picture
Deploy limpo
1b9d27c
raw
history blame contribute delete
323 Bytes
// Font Stack Function
//
// Returns a full font stack based on the given fontface and its variant.
@function font-stack($family, $variant: 'regular') {
@warn '`font-stack` will be deprecated in verion 1.0.0. Please use `font-family` instead, which uses the same signature.';
@return font-family($family, $variant);
}