From 970e88718cdfe29f0989bd362fa996300e86c2a3 Mon Sep 17 00:00:00 2001 From: AdrienHdz Date: Mon, 16 Oct 2023 21:45:04 -0400 Subject: [PATCH] feat: Added new font to frontend in tailwind config and message component and antialiazed --- frontend/src/app/messages/messages.component.html | 2 +- frontend/src/index.html | 5 ++++- frontend/tailwind.config.js | 7 +++++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/messages/messages.component.html b/frontend/src/app/messages/messages.component.html index 1381827..adde0bf 100644 --- a/frontend/src/app/messages/messages.component.html +++ b/frontend/src/app/messages/messages.component.html @@ -6,7 +6,7 @@
-
+
Lexi, an AI assistant
diff --git a/frontend/src/index.html b/frontend/src/index.html index 3af61ec..a358355 100644 --- a/frontend/src/index.html +++ b/frontend/src/index.html @@ -6,8 +6,11 @@ + + + - + diff --git a/frontend/tailwind.config.js b/frontend/tailwind.config.js index eeced4e..e953bc7 100644 --- a/frontend/tailwind.config.js +++ b/frontend/tailwind.config.js @@ -2,6 +2,13 @@ module.exports = { content: ['./src/**/*.{html,ts}'], theme: { + fontFamily: { + inter: ['Inter', 'sans-serif'], + 'architects-daughter': ['"Architects Daughter"', 'sans-serif'], + }, + fontSmoothing: { + antialiased: true + }, extend: {}, }, plugins: [],