Make code HTML elements monospace again

This commit is contained in:
Andreas Nedbal 2023-01-04 21:30:57 +01:00 committed by Andreas Nedbal
parent 5c583acf05
commit b7c7838b96
2 changed files with 5 additions and 0 deletions

View File

@ -70,6 +70,7 @@ $unicodeRangeValues in Lexend.$unicodeMap {
"overrides/badges",
"overrides/bootstrap-datetimepicker",
"overrides/buttons",
"overrides/code",
"overrides/colors",
"overrides/card",
"overrides/dropdown",

View File

@ -0,0 +1,4 @@
// BUG: We removed the prefix and Bootstrap still tried to load --bs-font-monospace
pre, code, kbd, samp {
font-family: var(--font-monospace);
}