fix: adding generic font family
This commit is contained in:
@@ -1,49 +1,51 @@
|
|||||||
@import url('https://fonts.googleapis.com/css?family=Intel%20One%20Mono:700|Intel%20One%20Mono:400');
|
@import url('https://fonts.googleapis.com/css?family=Intel%20One%20Mono:700|Intel%20One%20Mono:400');
|
||||||
|
|
||||||
|
$font-mono: 'Intel One Mono', monospace;
|
||||||
|
|
||||||
@mixin text-sm {
|
@mixin text-sm {
|
||||||
font-size: 0.600rem;
|
font-size: 0.600rem;
|
||||||
font-family: 'Intel One Mono';
|
font-family: $font-mono;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin text-base {
|
@mixin text-base {
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
font-family: 'Intel One Mono';
|
font-family: $font-mono;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin text-label {
|
@mixin text-label {
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
font-family: 'Intel One Mono';
|
font-family: $font-mono;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin text-xl {
|
@mixin text-xl {
|
||||||
font-size: 1.066rem;
|
font-size: 1.066rem;
|
||||||
font-family: 'Intel One Mono';
|
font-family: $font-mono;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin text-2xl {
|
@mixin text-2xl {
|
||||||
font-size: 1.421rem;
|
font-size: 1.421rem;
|
||||||
font-family: 'Intel One Mono';
|
font-family: $font-mono;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin text-3xl {
|
@mixin text-3xl {
|
||||||
font-size: 1.894rem;
|
font-size: 1.894rem;
|
||||||
font-family: 'Intel One Mono';
|
font-family: $font-mono;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin text-4xl {
|
@mixin text-4xl {
|
||||||
font-size: 2.525rem;
|
font-size: 2.525rem;
|
||||||
font-family: 'Intel One Mono';
|
font-family: $font-mono;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin text-5xl {
|
@mixin text-5xl {
|
||||||
font-size: 3.366rem;
|
font-size: 3.366rem;
|
||||||
font-family: 'Intel One Mono';
|
font-family: $font-mono;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user