Fix undesired ligatures in code font

This commit is contained in:
mDuo13
2019-06-19 16:29:20 -07:00
parent 654dcc1a2b
commit e431f31536

View File

@@ -1,5 +1,21 @@
/* Generic styles and colors not in the bootstrap files --------------------- */ /* Generic styles and colors not in the bootstrap files --------------------- */
body {
font-feature-settings: "liga", "kern";
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
font-size: 0.9375rem;
}
pre, code {
/* Disable ligatures on code-font, so, for example,
</ doesn't become a diagonal arrow. */
font-feature-settings: "liga" 0;
font-variant-ligatures: none;
}
th, td { th, td {
padding: 0.2em; padding: 0.2em;
vertical-align: text-top; vertical-align: text-top;
@@ -149,14 +165,6 @@ td:nth-child(1) {
} }
body {
font-feature-settings: "liga", "kern";
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
font-size: 0.9375rem;
}
.row { .row {
margin: 0 -1px; margin: 0 -1px;
} }