mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 04:46:41 +00:00
16 lines
512 B
CSS
16 lines
512 B
CSS
/* ==UserStyle==
|
|
@name Disable Font Ligatures
|
|
@description Disable font ligatures in all web pages
|
|
@version 1.0.0
|
|
@license CC0-1.0
|
|
@author Jim Myhrberg (https://jimeh.me/)
|
|
@namespace jimeh.me
|
|
@homepageURL https://github.com/jimeh/dotfiles/blob/main/userstyles/disable-font-ligatures.user.css
|
|
@updateURL https://github.com/jimeh/dotfiles/raw/main/userstyles/disable-font-ligatures.user.css
|
|
@preprocessor default
|
|
==/UserStyle== */
|
|
|
|
body {
|
|
font-variant-ligatures: none;
|
|
}
|