Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

feature: implement font ligatures fix #8

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down