From dead3eeaec508c43b4dc9593f8596d7c337bbe31 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Thu, 5 Dec 2024 19:31:17 +0100 Subject: [PATCH] fix(ui): Corrects font family in contentinvoice element. --- changelog.md | 5 +++++ ts/00_commitinfo_data.ts | 2 +- ts_web/00_commitinfo_data.ts | 2 +- ts_web/elements/contentinvoice.ts | 3 +-- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/changelog.md b/changelog.md index fcafcee..a9da30d 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2024-12-05 - 1.6.3 - fix(ui) +Corrects font family in contentinvoice element. + +- Updated the font-family for line items in contentinvoice.ts + ## 2024-12-05 - 1.6.2 - fix(translation) Corrected missing translation keys for VAT short form across multiple languages. diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index f17dbb6..53e5a84 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@design.estate/dees-document', - version: '1.6.2', + version: '1.6.3', description: 'A sophisticated framework for dynamically generating and rendering business documents like invoices with modern web technologies, featuring PDF creation, templating, and automation.' } diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index f17dbb6..53e5a84 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@design.estate/dees-document', - version: '1.6.2', + version: '1.6.3', description: 'A sophisticated framework for dynamically generating and rendering business documents like invoices with modern web technologies, featuring PDF creation, templating, and automation.' } diff --git a/ts_web/elements/contentinvoice.ts b/ts_web/elements/contentinvoice.ts index a240862..9daedf6 100644 --- a/ts_web/elements/contentinvoice.ts +++ b/ts_web/elements/contentinvoice.ts @@ -59,7 +59,7 @@ export class DeContentInvoice extends DeesElement { css` :host { color: #333; - font-family: inherit; + font-family: 'Exo 2'; } .trimmedContent { @@ -215,7 +215,6 @@ export class DeContentInvoice extends DeesElement { .lineItem { font-size: 12px; padding: 5px; - font-family: 'Dees Code', monospace; border-right: 1px dashed #ccc; }