fix(core): update
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user