From 9d9700214fe96eb738d26d5de7f5e68fa0de75a7 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Mon, 16 Jan 2023 11:57:24 +0100 Subject: [PATCH] fix(core): update --- ts_web/00_commitinfo_data.ts | 2 +- ts_web/elements/dees-input-text.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 78eb123..554e28d 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@designestate/dees-catalog', - version: '1.0.146', + version: '1.0.147', description: 'website for lossless.com' } diff --git a/ts_web/elements/dees-input-text.ts b/ts_web/elements/dees-input-text.ts index 9f19c80..ca9f665 100644 --- a/ts_web/elements/dees-input-text.ts +++ b/ts_web/elements/dees-input-text.ts @@ -92,7 +92,8 @@ export class DeesInputText extends DeesElement { transition: all 0.2s; outline: none; font-size: 16px; - font-family: Inter; + font-family: ${this.isPasswordBool ? 'monospace': 'Inter'}; + letter-spacing: ${this.isPasswordBool ? '1px': 'normal'}; color: ${this.goBright ? '#333' : '#ccc'}; }