Skip to content

Commit 5dbfbd7

Browse files
committed
fix: Harmonize font-family across all components
Updated the global styles to apply the 'PT Serif' font-family across all components. Ensured that there are no component-specific overrides that conflict with the global font style. Closes #420
1 parent 64af47e commit 5dbfbd7

File tree

107 files changed

+3255
-3503
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+3255
-3503
lines changed

.hintrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"axe/parsing": [
1717
"default",
1818
{
19-
"duplicate-id-active": "off"
19+
"duplicate-id-active": "off",
20+
"duplicate-id-aria": "off"
2021
}
2122
]
2223
}

index.html

+21-17
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
/>
1414
<link rel="preconnect" href="https://fonts.googleapis.com" />
1515
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
16-
<link
16+
<!-- <link
1717
href="https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Lexend+Deca:wght@600&family=Open+Sans:wght@300;400;600;700;800&display=swap"
1818
rel="stylesheet"
19-
/>
19+
/> -->
2020
<link rel="preconnect" href="https://fonts.googleapis.com" />
2121
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
2222
<link
@@ -30,17 +30,19 @@
3030
/>
3131
<link rel="preconnect" href="https://fonts.googleapis.com" />
3232
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
33-
<link
33+
<!-- <link
3434
href="https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@600&family=Open+Sans:wght@300;400;600;700;800&family=Poppins:wght@300;400&display=swap"
3535
rel="stylesheet"
36-
/>
36+
/> -->
3737
<link rel="preconnect" href="https://fonts.googleapis.com" />
3838
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
39-
<link
39+
<!-- <link
4040
href="https://fonts.googleapis.com/css2?family=Inria+Serif:ital@1&family=Lexend+Deca:wght@600&family=Open+Sans:wght@300;400;600;700;800&display=swap"
4141
rel="stylesheet"
42-
/>
43-
42+
/> -->
43+
44+
<link href="https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap" rel="stylesheet">
45+
4446
</head>
4547
<body class="dark:bg-dark-frame-bg">
4648
<div id="tree"></div>
@@ -55,39 +57,41 @@
5557
<title>DevPulse</title>
5658
<link rel="preconnect" href="https://fonts.googleapis.com" />
5759
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
58-
<link
60+
<!-- <link
5961
href="https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@600&family=Open+Sans:wght@300;400;600;700;800&family=Roboto:wght@100;300;700;900&display=swap"
6062
rel="stylesheet"
61-
/>
63+
/> -->
6264
<link rel="preconnect" href="https://fonts.googleapis.com" />
6365
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
64-
<link
66+
<!-- <link
6567
href="https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Lexend+Deca:wght@600&family=Open+Sans:wght@300;400;600;700;800&display=swap"
6668
rel="stylesheet"
67-
/>
69+
/> -->
6870
<link rel="preconnect" href="https://fonts.googleapis.com" />
6971
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
70-
<link
72+
<!-- <link
7173
href="https://fonts.googleapis.com/css2?family=PT+Serif:ital@0;1&display=swap"
7274
rel="stylesheet"
73-
/>
75+
/> -->
7476
<link
7577
rel="shortcut icon"
7678
href="https://res.cloudinary.com/feyton/image/upload/v1657317023/logo_vadrlf.svg"
7779
type="image/x-icon"
7880
/>
7981
<link rel="preconnect" href="https://fonts.googleapis.com" />
8082
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
81-
<link
83+
<!-- <link
8284
href="https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@600&family=Open+Sans:wght@300;400;600;700;800&family=Poppins:wght@300;400&display=swap"
8385
rel="stylesheet"
84-
/>
86+
/> -->
8587
<link rel="preconnect" href="https://fonts.googleapis.com" />
8688
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
87-
<link
89+
<!-- <link
8890
href="https://fonts.googleapis.com/css2?family=Inria+Serif:ital@1&family=Lexend+Deca:wght@600&family=Open+Sans:wght@300;400;600;700;800&display=swap"
8991
rel="stylesheet"
90-
/>
92+
/> -->
93+
<link href="https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap" rel="stylesheet">
94+
9195
</head>
9296
<body>
9397
<div id="tree"></div>

0 commit comments

Comments
 (0)