Include fonts in package

This commit is contained in:
N-Pex 2021-10-20 17:08:18 +02:00
parent 36ead1c31e
commit e38b55021f
11 changed files with 235 additions and 3 deletions

View file

@ -1,7 +1,54 @@
$background: #ffffff;
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
@font-face {
font-family: "Inter";
src: url("~@/assets/fonts/inter/Inter-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: "Inter";
src: url("~@/assets/fonts/inter/Inter-Regular.ttf") format("truetype");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Inter";
src: url("~@/assets/fonts/inter/Inter-Bold.ttf") format("truetype");
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: "Poppins";
src: url("~@/assets/fonts/poppins/Poppins-Regular.ttf") format("truetype");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Poppins";
src: url("~@/assets/fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: "Poppins";
src: url("~@/assets/fonts/poppins/Poppins-Bold.ttf") format("truetype");
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: "Poppins";
src: url("~@/assets/fonts/poppins/Poppins-ExtraBold.ttf") format("truetype");
font-weight: 800;
font-style: normal;
}
$chat-background: $background;
$chat-standard-padding: 32px;