Skip to content

Commit 0937452

Browse files
committed
About fonts updated
1 parent 479eb91 commit 0937452

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/components/about/AboutClients.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
<!-- About page clients section -->
33
<div class="mt-10 sm:mt-20">
44
<p
5-
class="text-2xl sm:text-4xl text-primary-dark dark:text-primary-light font-sans font-semibold"
5+
class="font-general-medium text-2xl sm:text-3xl text-primary-dark dark:text-primary-light"
66
>
77
{{ clientsHeading }}
88
</p>
9-
<div class="grid grid-cols-2 sm:grid-cols-4 mt-10 sm:mt-20 gap-2">
9+
<div class="grid grid-cols-2 sm:grid-cols-4 mt-10 sm:mt-14 gap-2">
1010
<AboutClientSingle
1111
v-for="client in clients"
1212
:key="client.id"
@@ -25,7 +25,7 @@ export default {
2525
},
2626
data: () => {
2727
return {
28-
clientsHeading: 'Some of the brands I worked with',
28+
clientsHeading: 'Some of the brands I have worked with',
2929
clients: [
3030
{
3131
id: 1,

src/components/about/AboutCounter.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="mt-10 sm:mt-20 bg-primary-light dark:bg-ternary-dark shadow-sm">
33
<!-- About me counters -->
44
<div
5-
class="container mx-auto py-20 block sm:flex sm:justify-between sm:items-center"
5+
class="font-general-medium container mx-auto py-20 block sm:flex sm:justify-between sm:items-center"
66
>
77
<!-- About me single counter -->
88
<div class="mb-20 sm:mb-0">

src/components/about/AboutMe.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<p
1616
v-for="bio in bios"
1717
:key="bio.id"
18-
class="mb-4 text-ternary-dark dark:text-ternary-light text-lg"
18+
class="font-general-medium mb-4 text-ternary-dark dark:text-ternary-light text-lg"
1919
>
2020
{{ bio.bio }}
2121
</p>

0 commit comments

Comments
 (0)