fix(core): update

This commit is contained in:
Philipp Kunz 2023-01-16 11:57:24 +01:00
parent bc82e110ef
commit 9d9700214f
2 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@designestate/dees-catalog',
version: '1.0.146',
version: '1.0.147',
description: 'website for lossless.com'
}

View File

@ -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'};
}