Skip to content

Commit 0814f6f

Browse files
author
Jaime de Venecia
committed
Update app font to Archivo for group review
1 parent 33202b9 commit 0814f6f

File tree

2 files changed

+52
-16
lines changed

2 files changed

+52
-16
lines changed

src/css/app.scss

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
body {
2-
font-family: "Mukta", sans-serif;
2+
font-family: "Archivo", sans-serif;
3+
font-weight: 500;
4+
// font-family: "Inter", sans-serif;
5+
// font-weight: 500;
6+
7+
// font-family: "Mukta", sans-serif; // <-- old font (OverVue 9 and prior)
38
color: $menutext;
49
height: 100vh;
510
width: 100vw;

src/index.template.html

Lines changed: 46 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,56 @@
33
<head>
44
<title><%= productName %></title>
55

6-
<meta charset="utf-8">
7-
<meta name="description" content="<%= productDescription %>">
8-
<meta name="format-detection" content="telephone=no">
9-
<meta name="msapplication-tap-highlight" content="no">
10-
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (ctx.mode.cordova || ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>">
6+
<meta charset="utf-8" />
7+
<meta name="description" content="<%= productDescription %>" />
8+
<meta name="format-detection" content="telephone=no" />
9+
<meta name="msapplication-tap-highlight" content="no" />
10+
<meta
11+
name="viewport"
12+
content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (ctx.mode.cordova || ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>"
13+
/>
1114

12-
<script src="https://kit.fontawesome.com/050e20b677.js" crossorigin="anonymous" data-auto-add-css="false"></script>
13-
15+
<script
16+
src="https://kit.fontawesome.com/050e20b677.js"
17+
crossorigin="anonymous"
18+
data-auto-add-css="false"
19+
></script>
1420

15-
<link rel="icon" type="image/png" href="statics/app-logo-128x128.png">
16-
<link rel="icon" type="image/png" sizes="16x16" href="statics/icons/favicon-16x16.png">
17-
<link rel="icon" type="image/png" sizes="32x32" href="statics/icons/favicon-32x32.png">
18-
<link rel="icon" type="image/png" sizes="96x96" href="statics/icons/favicon-96x96.png">
19-
<link rel="icon" type="image/ico" href="statics/icons/favicon.ico">
21+
<link rel="icon" type="image/png" href="statics/app-logo-128x128.png" />
22+
<link
23+
rel="icon"
24+
type="image/png"
25+
sizes="16x16"
26+
href="statics/icons/favicon-16x16.png"
27+
/>
28+
<link
29+
rel="icon"
30+
type="image/png"
31+
sizes="32x32"
32+
href="statics/icons/favicon-32x32.png"
33+
/>
34+
<link
35+
rel="icon"
36+
type="image/png"
37+
sizes="96x96"
38+
href="statics/icons/favicon-96x96.png"
39+
/>
40+
<link rel="icon" type="image/ico" href="statics/icons/favicon.ico" />
2041

21-
<link rel="preconnect" href="https://fonts.googleapis.com">
22-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
23-
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Mukta:wght@200;300;400;500;600;700;800&family=Nunito+Sans:wght@200;300;400;600;700;800;900&display=swap" rel="stylesheet">
42+
<link rel="preconnect" href="https://fonts.googleapis.com" />
43+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
44+
<link
45+
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Mukta:wght@200;300;400;500;600;700;800&family=Nunito+Sans:wght@200;300;400;600;700;800;900&display=swap"
46+
rel="stylesheet"
47+
/>
2448

49+
<!-- [OverVue v.10.0] fonts -->
50+
<link rel="preconnect" href="https://fonts.googleapis.com" />
51+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
52+
<link
53+
href="https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700&family=Archivo:wght@400;500;600;700;800&family=DM+Sans:opsz,[email protected],300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800;9..40,900&family=Fira+Code&family=Inter:wght@300;400;500;600;700;800;900&family=Signika:wght@400;500;600;700&family=Spectral:wght@300;400;500;600;700;800&display=swap"
54+
rel="stylesheet"
55+
/>
2556
</head>
2657
<body>
2758
<!-- DO NOT touch the following DIV -->

0 commit comments

Comments
 (0)