From 7683cfd47d6991c970a97f0878a2f02c731b227c Mon Sep 17 00:00:00 2001 From: 2vw <79321788+2vw@users.noreply.github.com> Date: Mon, 11 Mar 2024 16:10:01 -0400 Subject: [PATCH] feature: implement font ligatures fix --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 995faaa..db7eed3 100644 --- a/README.md +++ b/README.md @@ -160,6 +160,7 @@ Automatically hides the channels sidebar until hovered over. } ``` + ## Auto-hiding members list Automatically hides the members sidebar until hovered over. ```css @@ -296,6 +297,21 @@ This is applied only on images. } ``` +## Font Ligatures Fix +![image](https://github.com/lo2dev/revolt-tweaks/assets/79321788/938f2c73-a2ac-4bbc-a16c-1698163ca5ee) + +```css +/* Font ligatures fix */ +:root { + font-family: Inter, sans-serif; + font-feature-settings: "liga" 1, "calt" 1; +} +‎ +@supports (font-variation-settings: normal) { + :root { font-family: InterVariable, sans-serif; } +} +``` + ## Use foreground colour on server unread indicator ```css