This repository has been archived by the owner on Jun 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add new fonts to the application
- Loading branch information
1 parent
5cac98c
commit c52c8d2
Showing
3 changed files
with
28 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,23 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Kaizen</title> | ||
<base href="/" /> | ||
<head> | ||
<meta charset="utf-8"/> | ||
<title>Kaizen</title> | ||
<base href="/"/> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link rel="icon" type="image/x-icon" href="favicon.ico" /> | ||
<link | ||
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<link | ||
href="https://fonts.googleapis.com/icon?family=Material+Icons" | ||
rel="stylesheet" | ||
/> | ||
</head> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"/> | ||
<link rel="icon" type="image/x-icon" href="favicon.ico"/> | ||
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500&display=swap" rel="stylesheet"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com"> | ||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500&display=swap" rel="stylesheet"> | ||
<link | ||
href="https://fonts.googleapis.com/icon?family=Material+Icons" | ||
rel="stylesheet" | ||
/> | ||
</head> | ||
|
||
<body class="mat-typography"> | ||
<app-root></app-root> | ||
<script src="https://secure.mlstatic.com/sdk/javascript/v1/mercadopago.js"></script> | ||
</body> | ||
<body class="mat-typography"> | ||
<app-root></app-root> | ||
<script src="https://secure.mlstatic.com/sdk/javascript/v1/mercadopago.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
@use '~@angular/material' as mat; | ||
|
||
$custom-typography: mat.define-typography-config( | ||
$font-family: '-apple-system, Ubuntu, Inter, Roboto, Helvetica Neue, sans-serif !important', | ||
); | ||
|
||
@include mat.all-component-typographies($custom-typography); | ||
|