fix(core): update

This commit is contained in:
Philipp Kunz 2023-01-07 14:12:18 +01:00
parent 7cc0173e3c
commit 6509ddb81c
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -57,7 +57,7 @@ declare global {
export class DeesIcon extends DeesElement {
public static demo = () => html`
<dees-icon iconName="visibility"></dees-icon>
<div style="background: #fff; padding: 10px;">
<div style="background: #fff; padding: 10px; font-size: 24px">
<dees-icon iconName="visibility"></dees-icon>
<dees-icon brandName="facebook"></dees-icon>
</div>
@ -105,13 +105,13 @@ export class DeesIcon extends DeesElement {
word-wrap: normal;
white-space: nowrap;
direction: ltr;
font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}
</style>
${this.iconName
? html`
<i
class="material-symbols-outlined"
style="font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 48;"
>
${this.iconName}
</i>`