fix(UI): Fixed font-family order for code and value elements
This commit is contained in:
parent
2148959c35
commit
1a8562dc6f
@ -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.
|
||||
|
||||
|
@ -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'
|
||||
}
|
||||
|
@ -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 {
|
||||
|
@ -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';
|
||||
}
|
||||
`,
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user