fix(core): update

This commit is contained in:
2021-08-25 13:51:55 +02:00
parent 0adb319616
commit 486b8cb6a6
9 changed files with 104 additions and 15 deletions

View File

@@ -22,18 +22,18 @@ export class DeesButton extends DeesElement {
public static demo = () => html`<dees-button></dees-button>`;
@property()
text: string;
public text: string;
@property()
eventDetailData: string;
public eventDetailData: string;
@property({
type: Boolean
})
disabled = false;
public disabled = false;
@property()
isHidden = false;
public isHidden = false;
@property()
public type: 'normal' | 'highlighted' | 'discreet' | 'big' = 'normal';
@@ -59,6 +59,7 @@ export class DeesButton extends DeesElement {
display: block;
text-align: center;
background: ${cssManager.bdTheme('#eee', '#333')};
box-shadow: ${cssManager.bdTheme('0px 0px 5px rgba(0,0,0,0.1)', 'none')};
border-top: ${cssManager.bdTheme('1px solid #eee', '1px solid #444')};
border-radius: 2px;
line-height: 40px;