61 lines
1.5 KiB
SCSS
61 lines
1.5 KiB
SCSS
/* -------------------------------------------------------
|
|
Inter variable font.
|
|
|
|
Usage:
|
|
html { font-family: 'GitLab Sans', sans-serif; }
|
|
*/
|
|
@font-face {
|
|
font-family: 'GitLab Sans';
|
|
font-weight: 100 900;
|
|
font-display: optional;
|
|
font-style: normal;
|
|
font-named-instance: 'Regular'; /* stylelint-disable property-no-unknown */
|
|
src: font-url('gitlab-sans/GitLabSans.woff2') format('woff2');
|
|
}
|
|
|
|
/* -------------------------------------------------------
|
|
Monospaced font: JetBrains Mono.
|
|
|
|
Usage:
|
|
html { font-family: 'JetBrains Mono', sans-serif; }
|
|
*/
|
|
@font-face {
|
|
font-family: 'JetBrains Mono';
|
|
font-display: optional;
|
|
font-style: normal;
|
|
src: font-url('jetbrains-mono/JetBrainsMono.woff2') format('woff2');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'JetBrains Mono';
|
|
font-display: optional;
|
|
font-weight: bold;
|
|
src: font-url('jetbrains-mono/JetBrainsMono-Bold.woff2') format('woff2');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'JetBrains Mono';
|
|
font-display: optional;
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
src: font-url('jetbrains-mono/JetBrainsMono-Italic.woff2') format('woff2');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'JetBrains Mono';
|
|
font-display: optional;
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
src: font-url('jetbrains-mono/JetBrainsMono-BoldItalic.woff2') format('woff2');
|
|
}
|
|
|
|
:root {
|
|
--default-mono-font: 'JetBrains Mono', 'Menlo';
|
|
--default-regular-font: 'GitLab Sans', -apple-system;
|
|
}
|
|
|
|
// This isn't the best solution, but we needed a quick fix
|
|
// https://gitlab.com/gitlab-org/gitlab/-/merge_requests/107592/
|
|
* {
|
|
font-variant-ligatures: none;
|
|
}
|