fix(dees-dataview-codebox): Corrected the font-family order for better font rendering.

This commit is contained in:
Philipp Kunz 2024-07-01 11:59:30 +02:00
parent b7ebcc4cef
commit 4c620f480c
3 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,10 @@
# Changelog # Changelog
## 2024-07-01 - 1.1.6 - fix(dees-dataview-codebox)
Corrected the font-family order for better font rendering.
- Corrected the font-family order in dees-dataview-codebox.ts to ensure 'Intel One Mono' is prioritized over 'Geist Mono'.
## 2024-07-01 - 1.1.5 - fix(dees-dataview-codebox) ## 2024-07-01 - 1.1.5 - fix(dees-dataview-codebox)
Adjusted line number font weight in codebox Adjusted line number font weight in codebox

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@design.estate/dees-catalog', name: '@design.estate/dees-catalog',
version: '1.1.5', version: '1.1.6',
description: 'A library for building components and other projects' description: 'A library for building components and other projects'
} }

View File

@ -142,7 +142,7 @@ export class DeesDataviewCodebox extends DeesElement {
.lineNumbers { .lineNumbers {
line-height: 1.4em; line-height: 1.4em;
font-weight: 200; font-weight: 200;
font-family: 'Intel One Mono', 'monospace', 'Geist Mono'; font-family: 'Intel One Mono', 'Geist Mono', 'monospace';
} }
.hljs-string { .hljs-string {