fix(core): update

This commit is contained in:
Philipp Kunz 2023-01-07 14:23:17 +01:00
parent 75c8b409cc
commit 8acf3f4196
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.111',
version: '1.0.112',
description: 'website for lossless.com'
}

View File

@ -74,7 +74,7 @@ export class DeesButton extends DeesElement {
}
.button {
transition: all 0.1s ease;
transition: none;
position: relative;
font-size: 14px;
display: flex;
@ -182,7 +182,7 @@ export class DeesButton extends DeesElement {
${this.status === 'normal' ? html``: html`
<dees-spinner status="${this.status}"></dees-spinner>
`}
<div class="textbox">${this.text ? this.text : html`<slot></slot>`}</div>
<div class="textbox">${this.text ? this.text : this.textContent}</div>
</div>
`;
}