mirror of
https://github.com/minio/docs.git
synced 2025-04-24 06:05:11 +03:00
Sans-serif font was being displayed on docs instead of Inter due to a font definition issue
20 lines
475 B
SCSS
20 lines
475 B
SCSS
@font-face {
|
|
font-family: "Inter";
|
|
src: url("../fonts/inter/Inter-Regular.woff2") format("woff2");
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Inter";
|
|
src: url("../fonts/inter/Inter-Medium.woff2") format("woff2");
|
|
font-weight: 500;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Inter";
|
|
src: url("../fonts/inter/Inter-Bold.woff2") format("woff2");
|
|
font-weight: 700;
|
|
font-style: normal;
|
|
} |