From 32a60b06fc3b5c27b8de8dfa852fed549314cc9d Mon Sep 17 00:00:00 2001
From: Evan Pratten <evan@ewpratten.com>
Date: Fri, 5 Jan 2024 10:14:36 -0500
Subject: [PATCH] fix auto-hyphens

---
 sass/elements/text.scss | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/sass/elements/text.scss b/sass/elements/text.scss
index b84cb84..07c76c2 100644
--- a/sass/elements/text.scss
+++ b/sass/elements/text.scss
@@ -9,11 +9,14 @@ p {
   margin-bottom: 16px;
   text-align: justify;
   hyphens: auto;
+  font-kerning: normal;
+  // font-variant-ligatures: common-ligatures contextual discretionary-ligatures historical-ligatures;
 }
 
 .no-justify {
   p {
     text-align: left !important;
+    hyphens: none;
   }
 }