Disable ligatures on input fields

This commit is contained in:
Daniel Sheppard 2024-06-03 13:03:56 -05:00
parent 92bcb4a00f
commit 172d8b7313
2 changed files with 6 additions and 0 deletions

Binary file not shown.

View File

@ -4,6 +4,12 @@ body {
font-variant-ligatures: none; font-variant-ligatures: none;
} }
// Disable font-ligatures on input fields
input {
font-variant-ligatures: none;
font-feature-settings: "liga" 0;
}
// Restore default foreground & background colors for <pre> blocks // Restore default foreground & background colors for <pre> blocks
pre { pre {
background-color: transparent; background-color: transparent;