1
0
mirror of https://github.com/minio/docs.git synced 2025-04-24 06:05:11 +03:00
Kaan Kabalak 4162b52a65
Fix incorrect font being displayed on docs (#567)
Sans-serif font was being displayed on docs instead of Inter due to a
font definition issue
2022-09-20 14:46:51 +04:00

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;
}