Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
d4585654b6 | |||
1a8562dc6f | |||
2148959c35 | |||
28a84f7c1a |
12
changelog.md
12
changelog.md
@ -1,5 +1,17 @@
|
|||||||
# Changelog
|
# 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.
|
||||||
|
|
||||||
|
- Changed font weight from 200 to 400 for better readability.
|
||||||
|
- Updated font-family to include 'Geist Mono' for uniform appearance.
|
||||||
|
|
||||||
## 2024-06-30 - 1.1.2 - fix(elements)
|
## 2024-06-30 - 1.1.2 - fix(elements)
|
||||||
Fix various UI components and improve styles
|
Fix various UI components and improve styles
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@design.estate/dees-catalog",
|
"name": "@design.estate/dees-catalog",
|
||||||
"version": "1.1.2",
|
"version": "1.1.4",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A library for building components and other projects",
|
"description": "A library for building components and other projects",
|
||||||
"main": "dist_ts_web/index.js",
|
"main": "dist_ts_web/index.js",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@design.estate/dees-catalog',
|
name: '@design.estate/dees-catalog',
|
||||||
version: '1.1.2',
|
version: '1.1.4',
|
||||||
description: 'A library for building components and other projects'
|
description: 'A library for building components and other projects'
|
||||||
}
|
}
|
||||||
|
@ -141,8 +141,8 @@ export class DeesDataviewCodebox extends DeesElement {
|
|||||||
code *,
|
code *,
|
||||||
.lineNumbers {
|
.lineNumbers {
|
||||||
line-height: 1.4em;
|
line-height: 1.4em;
|
||||||
font-weight: 200;
|
font-weight: 400;
|
||||||
font-family: 'Intel One Mono', 'monospace';
|
font-family: 'Intel One Mono', 'monospace', 'Geist Mono';
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string {
|
.hljs-string {
|
||||||
|
@ -133,7 +133,7 @@ export class DeesDataviewStatusobject extends DeesElement {
|
|||||||
|
|
||||||
.detail .detailsText .value {
|
.detail .detailsText .value {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-family: 'Intel One Mono';
|
font-family: 'Intel One Mono', 'Geist Mono';
|
||||||
}
|
}
|
||||||
`,
|
`,
|
||||||
];
|
];
|
||||||
|
Reference in New Issue
Block a user