fix(UI): Fixed font-family order for code and value elements

This commit is contained in:
Philipp Kunz 2024-07-01 11:57:51 +02:00
parent 2148959c35
commit 1a8562dc6f
4 changed files with 9 additions and 3 deletions

View File

@ -1,5 +1,11 @@
# Changelog
## 2024-07-01 - 1.1.4 - fix(UI)
Fixed font-family order for code and value elements
- Updated font-family order in dees-dataview-codebox.ts
- Updated font-family order in dees-dataview-statusobject.ts
## 2024-07-01 - 1.1.3 - fix(dees-dataview-codebox)
Adjusted codebox font weight and font family.

View File

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

View File

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

View File

@ -133,7 +133,7 @@ export class DeesDataviewStatusobject extends DeesElement {
.detail .detailsText .value {
font-size: 14px;
font-family: 'Intel One Mono';
font-family: 'Intel One Mono', 'Geist Mono';
}
`,
];